Friday, February 13, 2009

Determining which Process is Using a Port

This post is more of a reminder to myself than anything. To determine which process is using a port with fuser in Linux run:
fuser -n tcp port
Alternatively, you can use netstat:
netstat -nlp | grep port

1 comment: