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.