> From: Cody Caughlan [mailto:[EMAIL PROTECTED] > Subject: NoClassDefFoundError in SystemLogHandler during > Bootstrap in binary version > > Classpath: /usr/local/apache-tomcat-5.5.16/bin: > /usr/local/apache-tomcat-5.5.16/server/lib: > /usr/local/apache-tomcat-5.5.16/common/lib: > /usr/local/jdk1.5.0_06/lib:/usr/local/jdk1.5.0_06/jre/lib/ext
One problem is that you have too much in your classpath; the only thing that's needed is bin/bootstrap.jar, along with setting -Djava.endorsed.dirs=common/endorsed (which is done automatically by the startup scripts). Any additional items in the classpath can cause problems with the classloader hierarchy Tomcat uses. (Even jre/lib/ext should not be in classpath, since the JVM uses a separate classloader for JRE extensions.) Take a look at: http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
