Here are a couple of simple scripts to allow you to find out what’s running on any port on your machine.
netstat -a -n -o tasklist /svc /FI "PID eq 2844"
2844 should be replaced with whatever your process ID is.
sudo apt-get install lsof; lsof -iTCP:80
TCP can be either “TCP” or “UDP” 80 should be replace with the port number you’re interested in
Your email is never published nor shared. Required fields are marked *
You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
I've got a masters degree in computer science and over 10 years of experience building web-based systems using Java/J2EE, Ruby, Rails and PHP. I'm a strong believer in the effectiveness of Agile Methods. Read more »
What’s running on port XXXX?
Here are a couple of simple scripts to allow you to find out what’s running on any port on your machine.
On Windows
2844 should be replaced with whatever your process ID is.
On Linux
TCP can be either “TCP” or “UDP”
80 should be replace with the port number you’re interested in