Re: Tomcat6 on Linux startup on boot..daemon?

2008-02-15 Thread Bill Barker
Well the main problem is that Tomcat is running as root, so any bug in your webapp that allows the user to read/write/excecute an arbitrary file on your system will likely let a random blackhat take control of it. "Tim Alberts" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm s

Tomcat6 on Linux startup on boot..daemon?

2008-02-15 Thread Tim Alberts
I'm setting up Tomcat6 on Linux and want it to start on boot. I use the following init script: #!/bin/sh # description: Tomcat 6.0 web application server # chkconfig: 2345 99 00 case "$1" in 'start') export JAVA_HOME=/usr/java/default /opt/apache/apache-tomcat-6.0.16/bin/startup.sh to