Tomcat 5.5 Doesn’t Start in Ubuntu 7.10

This is related to one of the web application deployed in Tomcat containing the
Apache Common Loggings jar file inside the WEB-INF/lib directory. To
fix this issue, place a copy of the commons-logging jar file inside the
Tomcat’s common endorsed directory.

$ cp commons-logging-1.1.jar /usr/share/java
$ cd /usr/share/tomcat5.5/common/endorsed
$ ln -s ../../../java/commons-logging-1.1.jar commons-logging-1.1.jar

Related posts:

  1. Problem using MySQL JDBC on Tomcat 5.5 and Ubuntu 8.04
  2. Tomcat 5.5 Doesn’t Start in Ubuntu 7.04
  3. Tomcat 5.5 for Ubuntu Quickstart Guide
  4. Problems with Ubuntu 7.10 and Tomcat 5.5
  5. Integrating Tomcat and Apache with mod_jk Connector
This entry was posted in Tomcat, Ubuntu and tagged , . Bookmark the permalink.

Comments are closed.