How to get tomcat to autostart on linux

2003-09-03 Thread batristain
Greetings, I need to know how to get tomcat to autostart on a redhat linux 8 box - can anyone tell me? Thanks, Bobbie Bobbie Atristain Internet Systems Administrator Media General, INC. 804.649.6156 - To unsubscribe, e-mail:

Re: How to get tomcat to autostart on linux

2003-09-03 Thread John Turner
Courtesy of Oscar Carrillo: http://daydream.stanford.edu/tomcat/install_web_services.html#daemons You need to download his tomcatd script, and copy it to /etc/rc.d/init.d. Then execute: /sbin/chkconfig --del tomcatd Then execute: /sbin/chkconfig --add tomcatd Note you will need to modify the

Re: How to get tomcat to autostart on linux

2003-09-03 Thread Filip Hanik
you can create a script in /etc/init.d/ or in /etc/rc.local simply put export TOMCAT_HOME=blablabla export CATALINA_HOME=$TOMCAT_HOME $CATALINA_HOME/bin/startup.sh Filip - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 7:52 AM

Re: How to get tomcat to autostart on linux

2003-09-03 Thread Carlos Cajina - Hotmail
Hi Bobbie. Please see http://daydream.stanford.edu/tomcat/install_web_services.html#java At the end of the HOW-TO you'll find what you need... Good luck!!! - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 8:52 AM Subject:

RE: How to get tomcat to autostart on linux

2003-09-03 Thread batristain
Thanks for the info -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 11:04 AM To: Tomcat Users List Subject: Re: How to get tomcat to autostart on linux Courtesy of Oscar Carrillo: