Re: Problem with proper shutdown of tomcat

2004-07-30 Thread Jignesh Patel
As previously mentioned user killall -9 java command On Wed, 2004-07-28 at 03:59, dejw wrote: Hi, I have tomcat 4.1.30 installed on linux red hat 9 with java version 1.4.1_03. Sometimes when I shutdown tomcat by using shutdown script it remains java process in memory which I have to kill

Problem with proper shutdown of tomcat

2004-07-28 Thread dejw
Hi, I have tomcat 4.1.30 installed on linux red hat 9 with java version 1.4.1_03. Sometimes when I shutdown tomcat by using shutdown script it remains java process in memory which I have to kill manually. Only then I can start up tomcat again. What can be the reason of this? I'm using

Re: Problem with proper shutdown of tomcat

2004-07-28 Thread Rodrigo Ruiz
Maybe you have some non-daemon threads running. This would prevent the JVM from exiting. I would do the following: - Once the java process is frozen, ask it a thread stack dump (I do not remember well, but I think in Linux you must send the process a QUIT signal) - In the trace you should see

Re: Problem with proper shutdown of tomcat

2004-07-28 Thread shiv juluru
ya i am also agree with rruiz if u getting problems like this ,use killall java in linux Rodrigo Ruiz [EMAIL PROTECTED] wrote: Maybe you have some non-daemon threads running. This would prevent the JVM from exiting. I would do the following: - Once the java process is frozen, ask it a thread

RE: Problem with proper shutdown of tomcat

2004-07-28 Thread Shapira, Yoav
Hi, Amen! The responses on the list so far have made my day! ;) Yoav Shapira Millennium Research Informatics -Original Message- From: Rodrigo Ruiz [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 6:29 AM To: Tomcat Users List Subject: Re: Problem with proper shutdown of tomcat

RE: Problem with proper shutdown of tomcat

2004-07-28 Thread Jignesh Patel
-Original Message- From: Rodrigo Ruiz [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 28, 2004 6:29 AM To: Tomcat Users List Subject: Re: Problem with proper shutdown of tomcat Maybe you have some non-daemon threads running. This would prevent the JVM from exiting. I would do