> From: Andrew Hole [mailto:andremailingl...@gmail.com]
> Subject: Tomcat and coldfusion
>
> It looks that tomcat is stopped but the tomcat process still
> alive in the server.

This is pretty much always a result of a webapp starting its own threads and 
failing to shut them down; the JVM can't terminate until all non-daemon threads 
exit.  Properly designed webapps often use a ServletContextListener to do the 
necessary thread management.

Try taking a thread dump after the shutdown request to see where the remaining 
threads are.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to