>From a command prompt:
man ps (manual pages for the ps command, ps = process status) man netstat (manual pages for the netstat command, netstat = network status, including ports) Also: ps -ef --cols=300 |grep java |more (tells you all tomcat processes running) If tomcat is shutdown, but java processes are still present in the output of the ps command, then Tomcat is hung. At that point, you'll need to use the kill command to kill Tomcat, but you'll need to be root to do it (man kill). You would use the output of the ps command to get the process ID (PID) of the java process where the parent process ID (PPID) is 1. If there are other developers/tomcat processes on this box, you will have to be very careful not to trash whatever it is they are doing. John > -----Original Message----- > From: Bill Blackmon [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 24, 2002 12:23 PM > To: Tomcat Users List > Subject: Re: ? java.net.BindException: Address already in use > > > The host machine is Linux, don't know which flavor. I have no > idea how how > to: > <<<< > Look if there are tomcat processes runing. > Look at the state of the ports. > Look who owns the ports. > >>>> > from the SSH connection I have. > > Thanks, > Bill > > > > ----- Original Message ----- > From: "Ralph Einfeldt" <[EMAIL PROTECTED]> > To: "Tomcat Users List" <[EMAIL PROTECTED]> > Sent: Tuesday, September 24, 2002 12:04 PM > Subject: AW: ? java.net.BindException: Address already in use > > > There are this options: > - at least one thread isn't dying so there is still > a tomcat instance running > - the time between the end of tomcat and > the restart was to short. So that the soccets have > not closed completly. > - you have a port conflict. > > Look if there are tomcat processes runing. > Look at the state of the ports. > Look who owns the ports. > > If you wan't more help on how to achieve this > you have to supply your operating system as the > tools that answer this question are very different. > > (For linux and other unik like systems is ps, netstat, lsof) > > > -----Urspr�ngliche Nachricht----- > > Von: Bill Blackmon [mailto:[EMAIL PROTECTED]] > > Gesendet: Dienstag, 24. September 2002 17:44 > > An: TOMCAT USERS GROUP > > Betreff: ? java.net.BindException: Address already in use > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
