On 26. mars. 2008, at 13.03, SMITH Duncan wrote:
I get the following error:

ld.so.1: monit: fatal: libssl.so.0.9.8: open failed: No such file or directory
Killed

I have the library file libssl.so.0.9.8 in /usr/local/ssl/lib.

I have tried setting the --with-ssl-dir option to various other settings such as "/usr/local/ssl" "/usr/local/ssl/bin" etc.


Looks like the runtime linker (ld) cannot find the ssl library. Its been a long time since I used Solaris, but I believe you can export this environment variable, so the dynamic linker will find the ssl library.

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/ssl/lib

Or if Solaris has a ld configure file, such as /etc/ld.so.conf you can add the ssl library there so you do not have to set the environment variable mentioned above.


Ps. This means that other applications using ssl should get the same error. Do they?


--
To unsubscribe:
http://lists.nongnu.org/mailman/listinfo/monit-general

Reply via email to