Monday, October 8, 2012

Kill Tomcat process at port 8080


Open the terminal window and execute the following commands.

sudo lsof -w -n -i tcp:8080


This will give you the pidnumber of the process that runs at 8080. You can then go ahead and kill it.
sudo kill -9 pidnumber

No comments:

Post a Comment