Reputation: 1214
When I was running my project on 8080 port immediately the eclipse closed automatically and the port is still running with the project, I reponed and I can't run the project on 8080 port anymore.
In Mac OS.
Upvotes: 1
Views: 319
Reputation: 5403
[sudo] lsof -ti:8080 | xargs kill
should pull up the PID binding to 8080 and kill it
Upvotes: 1