The release notes say:
Redhat Linux 9.0 users should use the following setting to avoid stability problems: export LD_ASSUME_KERNEL=2.4.1
This simple shell script can tell you if you are running redhat 9: if [ -f /etc/redhat-release ] && grep -q Shrike /etc/redhat-release ; then echo is redhat 9 else echo is not redhat 9 fi
So the following should be added to catalina.sh:
if [ -f /etc/redhat-release ] && grep -q Shrike /etc/redhat-release ; then export LD_ASSUME_KERNEL=2.4.1 fi
Yoav Shapira wrote:
The Apache Jakarta Tomcat team is proud to announce the immediate availability
of Tomcat 5.5.1. This second build in the 5.5 branch contains a number of
significant stability improvements over 5.5.0, as well as a host of
documentation updates and minor fixes.
Release notes: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/RELEASE-NOTES
Please refer to the change log for the list of changes:
http://jakarta.apache.org/tomcat/tomcat-5.5-doc/changelog.html
Downloads: Binaries: http://jakarta.apache.org/site/binindex.cgi
Sources: http://jakarta.apache.org/site/sourceindex.cgi
The Apache Jakarta Tomcat Team
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]