Check if Port 8080 is in Use – Troubleshoot Tomcat Startup Issues

startuptomcatwindows

Tomcat won't start, and it has worked perfectly before. I suspect something else is running on port 8080. I am running Windows Vista. How do I check that nothing else is using port 8080?

I have recently downloaded several versions of Jetty. Could this be the problem? I am not running them concurrently so I can't see how.

Best Answer

Open up a command prompt and run

netstat -ano | findstr 8080

Rightmost column is PID

In task manager you can add column for PID then find the app that is using the port.

Related Topic