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)?
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)?
Using:
lsof -i :8080 netstat -n --tcp -p -l |grep ":8080"