Re: How to turn off tomcat daemon?

2008-07-03 Thread David Smith
You shouldn't need to kill any java processes. If the java process is spawned by jsvc, then jsvc will signal it to stop. You can tell that in the long format ps command with java having a parent process id equal to the jsvc process id. Also be aware some webapps take a while to clean up and

Re: How to turn off tomcat daemon?

2008-07-03 Thread David Smith
2008 11:29:36 -0700 (PDT) From: kjwchu <[EMAIL PROTECTED]> Subject: How to turn off tomcat daemon? To: users@tomcat.apache.org Send reply to: Tomcat Users List I ran tomcat as a daemon via the command below: ./bin/jsvc -cp

Re: How to turn off tomcat daemon?

2008-07-02 Thread kjwchu
t;[EMAIL PROTECTED]> > Subject: How to turn off tomcat daemon? > To: users@tomcat.apache.org > Send reply to:Tomcat Users List > >> >> I ran tomcat as a daemon via the command below: >> ./bin/jsvc -cp ./bin/bootstrap.jar

Re: How to turn off tomcat daemon?

2008-07-02 Thread kjwchu
--- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/How-to-t

Re: How to turn off tomcat daemon?

2008-07-02 Thread David Smith
Just kill the jsvc process. It'll trap the signal and send a proper shutdown to tomcat. See the sample service script provided with jsvc source. --David kjwchu wrote: I ran tomcat as a daemon via the command below: ./bin/jsvc -cp ./bin/bootstrap.jar -outfile ./logs/catalina.out -errfile ./

Re: How to turn off tomcat daemon?

2008-07-02 Thread Steve Ochani
On 2 Jul 2008 at 11:29, kjwchu wrote: Date sent: Wed, 02 Jul 2008 11:29:36 -0700 (PDT) From: kjwchu <[EMAIL PROTECTED]> Subject: How to turn off tomcat daemon? To: users@tomcat.apache.org Send reply to: Tomcat User

How to turn off tomcat daemon?

2008-07-02 Thread kjwchu
I ran tomcat as a daemon via the command below: ./bin/jsvc -cp ./bin/bootstrap.jar -outfile ./logs/catalina.out -errfile ./logs/catalina.err org.apache.catalina.startup.Bootstrap How to turn if off? Thanks for any thoughts. -- View this message in context: http://www.nabble.com/How-to-turn