On Mon, Apr 12, 2004 at 07:37:31PM -0400, Yang Xiao wrote: : I'm trying to get Apache 2.0.49/JK2/Tomcat 5.0.19 to work : I was able to get JK2 to compile and placed the mod_jk2.so and libjkjni.so : in /usr/local/apache/modules : But when I start the Tomcat server, I'm getting this error : : INFO: APR not loaded, disabling jni components: java.io.IOException: : java.lang.UnsatisfiedLinkError: /usr/local/apache/modules/libjkjni.so: : /usr/local/apache/modules/libjkjni.so: undefined symbol: apr_md5_final
The error message is your big clue here ;) Do a web search for the details of what this message means, then run "ldd" on libjkjni.so to determine which shared libs it requires. Notice which libs ldd says don't exist, and set (or append) $LD_LIBRARY_PATH accordingly. -QM -- software -- http://www.brandxdev.net tech news -- http://www.RoarNetworX.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
