How do I determine which application is using port 8080? [duplicate]

Solution 1:

You can see the command that occupies port 8080 by issuing e.g. lsof -i :8080 or netstat -tulpn | grep :8080.