Tomcat Server Errror in Eclipse

Closed
JoyUser Posts 2 Registration date Thursday October 25, 2012 Status Member Last seen October 26, 2012 - Oct 25, 2012 at 05:20 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Oct 26, 2012 at 09:40 PM
Hello,
I am getting following error in my eclipse Tomcat server. Could anyone able resolve this issue.?

"Starting tomcatv6.0 server at localhost has encountered a problem
several port(8080,8009) required by tomcat v6.0 server at localhost are already in use. the server may already be running in another process, or a system process may be using the port. to start this server you will need to stop the other process or change the port number(s);"

Regards
Related:

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Oct 25, 2012 at 06:55 AM
go to task mgr and see if under process, you see tom cat running. Kill that process and try again
0
no process running regarding tomcat. then you have any other options to solve this?
0
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Oct 25, 2012 at 07:17 AM
Well other question would be do you have any other webserver running ? If that is the case you would want to change the port in server.xml
0
JoyUser Posts 2 Registration date Thursday October 25, 2012 Status Member Last seen October 26, 2012
Oct 26, 2012 at 12:56 AM
no other server is running
0
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Oct 26, 2012 at 09:40 PM
this can give u process id
netstat -aon | findstr 8080

of all the PID listed u can use
then u can use this to find out which application is using it (in example i am saying that pid was 7104

tasklist | findstr 7104
0