On Thu, Apr 22, 2004 at 06:39:49AM -0400, Scott Goodwin wrote: > Looks like problem between RH 7.3 and OpenSSL 0.9.7d. Ensure that your > LD_LIBRARY_PATH is set appropriately to point to our compiled version > of OpenSSL libs before starting AOLserver; you might be picking up the > system's SSL libs. If that doesn't work, follow the same build
Good point. On our Red Hat 7.3 box, since we have multiple OpenSSL libraries installed, we start AOLserver with this simple "/web/aol3/bin/nsd-new-ssl" script: #!/bin/sh . /etc/profile export LD_LIBRARY_PATH=/usr/local/openssl/lib:$LD_LIBRARY_PATH exec `dirname $0`/nsd8x $* Also, the opennssl command-line program is useful for testing whether you have the LD_LIBRARY_PATH stuff right, e.g.: $ which openssl /usr/bin/openssl $ /usr/bin/openssl version OpenSSL 0.9.6b [engine] 9 Jul 2001 $ /usr/local/openssl-0.9.7c/bin/openssl version /usr/local/openssl-0.9.7c/bin/openssl: error while loading shared libraries: libssl.so.0.9.7: cannot open shared object file: No such file or directory $ LD_LIBRARY_PATH=/usr/local/openssl/lib:$LD_LIBRARY_PATH /usr/local/openssl-0.9.7c/bin/openssl version OpenSSL 0.9.7b 10 Apr 2003 -- Andrew Piskorski <[EMAIL PROTECTED]> http://www.piskorski.com/ -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
