I have tried every thing I could think of, even including a
$ENV{'LD_LIBRARY_PATH'} = "/usr/lib:/usr/local/lib:/usr/local/perl/lib";
in the perl script, but still fails loading libraries *.so !!

Any idea someone !?
Many thanks in advances
Regards
Andre


How do you start your Tomcat?! Trough a init.d script, or from bash, sh or another shell? If it is from a shell you have to be sure that your LD_LIBRARY_PATH is set _before_ you start Tomcat, ie try this:
LD_LIBRARY_PATH="/usr/lib:/usr/local/lib:/usr/local/perl/lib" /path/to/tomcat/bin/startup.sh


Perhaps this happens because you do not call 'export' when setting an env variable. You have to otherwise it will only exist in the moment you press enter...

Claus

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to