DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20447>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20447 Apache 2.0.46 fails to start ------- Additional Comments From [EMAIL PROTECTED] 2003-06-10 12:49 ------- To fix libgcc_s.so not being found, you're going to have to set LD_LIBRARY_PATH to point to the directory with libgcc_s.so. That is the fix to Apache not starting due to that library not being found. >ldd /usr/local/ssl/lib/libssl.so.9.6 >and got the message = libcrypto.so.0.9.6 (file not found), >but they're in the same directoty. ??? It doesn't matter whether or not the libraries are in the same directory. A library is found if it is in the default dynamic loader search sequence* or in the list of directories specified by the LD_LIBRARY_PATH environment variable. So add /usr/local/ssl/lib to LD_LIBRARY_PATH too. *I don't know how to set the default dynamic loader search sequence on Solaris. You might check in a Solaris news group. So the next step is to try this: (replace /path/to/gcc with the name of the directory containing libgcc_s.so) LD_LIBRARY_PATH=/path/to/gcc:/usr/local/ssl/lib apachectl start If it works, then edit Apache's bin/envvars file and update the setting of LD_LIBRARY_PATH to include those two additional directories. If it doesn't work, what is the error message? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
