2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Which application is using port 80?

Last updated at Posted at 2013-07-11

It's hard for me to figure out which app is using port 80 when I need to run up web server in windows before.

But now I realize how to find it out.

Use this following command to get process id of the application which is using port 80.

p.s. Ofcuz you can change to any port number you want.

netstat -nao | find "0.0.0.0:80"

Then put the process id into the column named 'process_id' below, we'll have a vision like the following picture.

tasklist /fi "pid eq [process_id]"

1.png

Here I use 'httpd.exe' to be the sample, at the first time I solve my problem that is skype dibs port 80.

Hope these help. :P

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?