Windows View 80 port occupancy

Source: Internet
Author: User

Just need to debug the program found 127.0.0.1 can not access, start APMSERV hint 80 port is occupied, used to be used software, now say how to use the command to check:

Start--run--cmd Enter the command prompt input Netstat-ano you can see all the connected PID in the task Manager to find the program corresponding to this PID if the task Manager does not have the PID this item, you can select "View"-"Choose Column" in Task Manager

Often, when we start the application to find that the system needs the port to be occupied by other programs, how to know who owns the port we need, many people have a headache, the following is a very simple method, I hope to be useful for everyone

If we need to determine who's taking up our 80 ports,

1. Windows platform

Execute under Windows command Line window:

C:>netstat-aon|findstr "80"

TCP 0.0.0.0:80 0.0.0.0:0 Listening 2736

Do you see that the port is occupied by a process number 2736 process, and continue with the following command:

C:>tasklist|findstr "2736"

Peer.exe 2016 Console 0 16,064 K

It's clear that thread takes up your port, kill it

If the second step is not found, then open Task Manager, see which process is 2736, and then kill it.

Peer.exe this thing is the RaySource network disk download software process, very annoying

If you need to see additional ports. get rid of 80.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.