I'd like to be able to find out which process is currently using a certain port in Linux. Is there any way to do this?
|
feedback
|
|
You have a couple of options:
will give you the list of processes using tcp port 80. Alternatively,
will give you all open network connections. | |||
feedback
|
| |||||
feedback
|
netstat -anb– djangofan Dec 11 '09 at 21:39