Determining Port Usage
05/18/2009
Want to know how to figure out what’s running on a given port on your machine? The following example will show you what’s running on port 80 on your Linux machine:
lsof -i -n -P | grep :80
Want to know how to figure out what’s running on a given port on your machine? The following example will show you what’s running on port 80 on your Linux machine:
lsof -i -n -P | grep :80
Hi,
How to do the same in windows.
Thanks,
Pandi
@Pandi
netstat -a -n -o, write the pid, and find it in the Task Manager (you have to show the PID column in View > Select Columns)