Daily Archives: 16.08.2009

Find which process ID is using some IP port

How to find, in linux, which Process ID is using some TCP port # lsof -w -n -i tcp:8080 or # fuser -n tcp 8080 or # netstat -anp|grep :8080[[:blank:]]

Posted in Linux tips | Leave a comment