On Tue, 15 Oct 2002 06:17, you wrote: > Hi all, > > When I stop the tdk2.2-b3 version of catalina, log/catalina.out shows it > stopping. However, the jvm processes still appear in the process list > and attempting to start catalina again results in a > java.net.bindException Address already in use :8080.
If there is a user (non-daemon) thread still running, it will keep the JVM alive. Try this: cd $TDK_HOME/bin ./catalina.sh run Then press <Ctrl>-<\> to get a full JVM thread dump. That will help you analyse which threads are running in that JVM. I think you can also do this by sending a SIGQUIT signal to the JVM process if you use the catalina startup.sh and shutdown.sh scripts. See "man kill". Regards, -- Rodney -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
