Tomcat 5.5 Doesn’t Start in Ubuntu 7.04

For the Ubuntu installation, Tomcat’s log file is set to be a pipe, but

Tomcat can’t seem to start with it. A quick fix will be to recreate it
as a regular file with the same security settings and restart Tomcat.

$ cd /var/log/tomcat5.5
$ sudo rm catalina.out
$ sudo touch catalina.out
$ sudo chown tomcat55:nogroup catalina.out
$ sudo chmod 600 catalina.out

Related posts:

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

Comments are closed.