1

Possible Duplicate:
Finding the process that is using a certain port in Linux

More specifically, how can I find out what processes are using port 8080 (for example a web server)?

2 Answers2

4

Using:

lsof -i :8080
skaffman
  • 238
2
netstat -n --tcp -p -l |grep ":8080"
thejh
  • 1,417