I had the same problem on a red Hat 7.0 machine, where I
installed the newest openssl 9.6 library. It has an
libssl.so.1.
You also need to install the openssl095a-0.9.5a-9.i386.rpm
package and then it worked for me.
Andrei
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In Solaris, if you have ssl libraries installed
in /usr/local/ssl/lib, you have to link the libraries
to /usr/lib.
For Example: if the library libcrypto.so.0.9.6 fails with
the following error:
./check_http -h
ld.so.1: ./check_http: fatal: libcrypto.so.0.9.6: open
failed: No such file or directory
Killed
Then:
ln -s /usr/local/ssl/lib/libcrypto.so.0.9.6 /usr/lib
This worked for me.
-muksyed.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=307843
Hi
I had the same problem on a red Hat 7.0 machine, where I
installed the newest openssl 9.6 library. It has an
libssl.so.1.
You also need to install the openssl095a-0.9.5a-9.i386.rpm
package and then it worked for me.
Andrei
Logged In: YES
user_id=499680
In Solaris, if you have ssl libraries installed
in /usr/local/ssl/lib, you have to link the libraries
to /usr/lib.
For Example: if the library libcrypto.so.0.9.6 fails with
the following error:
./check_http -h
ld.so.1: ./check_http: fatal: libcrypto.so.0.9.6: open
failed: No such file or directory
Killed
Then:
ln -s /usr/local/ssl/lib/libcrypto.so.0.9.6 /usr/lib
This worked for me.
-muksyed.