Pages

Tuesday, March 25, 2014

Kill a process on a port in ubuntu


sudo kill `sudo lsof -t -i:8080`

If the above does not work, try

sudo kill $(sudo lsof -t -i:8080)

No comments: