RE: Java processes in tomcat...

2005-06-30 Thread Øyvind Johansen
Possible reasons (not really sure here): You open a filestream, but you do not close it after use You start a Thread that never finishes (no stop when tomcat runs destroy() on your webapp) You start a ServerSocket listener that doesn't timeout or stop gracefully. Some other reason I do not see.

RE: Java processes in tomcat...

2005-06-30 Thread Surendrakumar Viswanathan \(suviswan\)
Users List' Subject: RE: Java processes in tomcat... Possible reasons (not really sure here): You open a filestream, but you do not close it after use You start a Thread that never finishes (no stop when tomcat runs destroy() on your webapp) You start a ServerSocket listener that doesn't timeout

RE: Java processes in tomcat...

2005-06-30 Thread Gulshan Babajee
To: 'Tomcat Users List' Subject: RE: Java processes in tomcat... Possible reasons (not really sure here): You open a filestream, but you do not close it after use You start a Thread that never finishes (no stop when tomcat runs destroy() on your webapp) You start a ServerSocket listener that doesn't

RE: Java processes in tomcat...

2005-06-30 Thread Surendrakumar Viswanathan \(suviswan\)
Check your web.xml (under TOMCAT_ROOT/conf) -Surendra -Original Message- From: Gulshan Babajee [mailto:[EMAIL PROTECTED] Sent: Thursday, June 30, 2005 5:34 PM To: 'Tomcat Users List' Subject: RE: Java processes in tomcat... By default fork is enabled, but for the compiler, I don't

RE: Java processes in tomcat...

2005-06-30 Thread Gulshan Babajee
Hi again, From the web.xml file in tomcat/conf, I found that fork = false and compiler is 'javac'. -Original Message- From: Surendrakumar Viswanathan (suviswan) [mailto:[EMAIL PROTECTED] Sent: Thursday, June 30, 2005 5:55 PM To: Tomcat Users List Subject: RE: Java processes in tomcat

Re: java processes after tomcat exits

2003-02-05 Thread Sven Koehler
Are you on Linux? Do you have LD_KERNEL_ASSUME=2.2.5 set? Do i need this for JDK1.4? i thought it's only needed for JDK1.3 - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: java processes after tomcat exits

2003-02-04 Thread Ralph Einfeldt
Which vm do you use? For IBM and Sun you can call 'kill -QUIT pid' to get the stacktraces of the threads. You can find the output in catalina.out. That might give you an idea what's causing these behaviour. -Original Message- From: Sven Köhler [mailto:[EMAIL PROTECTED]]

Re: java processes after tomcat exits

2003-02-03 Thread Oscar Carrillo
Do you use any connectors? Does it have to timeout on anything, like a database connection? It's common for it take 3 to 10 seconds it seems for normal shutdown. Are you on Linux? Do you have LD_KERNEL_ASSUME=2.2.5 set? Oscar On Tue, 4 Feb 2003, [UTF-8] Sven Köhler wrote: hi, if i stop