Which Process Is Using Port ?
Posted by admin
For some reason, the "-o" option is missing from netstat on OS X Snow Leopard (10.6.4, anyway), so if you need to know which processes are using a given port, try:
sudo lsof -i -P | grep 36364
Of course substitute your own port number (36364 is used by Skype, btw).