On 2014-09-12 1:29 AM, Sönke Ludwig wrote:> What did you do to make it work in the end? I remember having similar

issues on Cent OS, but I'm unsure what was the cause back then.

You would have to see if you have the libssl library in the filesystem first, and where it is: find / -name "libssl*"

If libssl.so isn't in /lib, /usr/lib, /lib64 or /usr/lib64, you might need to create a symlink or add it in the environment variable for the linker using $LD_LIBRARY_PATH environment variable: setenv LD_LIBRARY_PATH /usr/local/lib

If you found e.g. libssl.so.1.0.1e but not libssl.so, you'll need to create a symlink to the actual file from the expected filename: ln -s /usr/lib64/libssl.so.1.0.1e /usr/lib/libssl.so

To preserve environment variables, and avoid this from breaking at next reboot, you need to append the setenv command to .bashrc