There is another program listening on port 80, the usual suspects
- Skype (listening on port 80)
- NOD32 (add Apache to the IMON exception list so that it can bind Apache)
- Some other antiviruses (same as above)
To fix this, you can disable a program that uses port 80, or configure it to use a different port, or configure Apache to listen on a different port using the Listen directive in httpd.conf. For an antivirus, configure an antivirus so that Apache can communicate with the port of your choice.
A way to diagnose which application, if any, is connected to port 80, runs netstat with these parameters, look for: 80 next to the local IP address (second column) and find the PID (last column). Then in the task manager you can find which process has the PID that you received in the previous step. (You may need to add a PID column in the task manager)
C: \ Users \ vinko> netstat -ao -p tcp
Conexiones activas Proto Dirección local Dirección remota Estado PID TCP 127.0.0.1:1110 127.0.0.1:51373 TIME_WAIT 0 TCP 127.0.0.1:1110 127.0.0.1:51379 TIME_WAIT 0 TCP 127.0.0.1:1110 127.0.0.1:51381 ESTABLISHED 388 TCP 127.0.0.1:1110 127.0.0.1:51382 TIME_WAIT 0 TCP 127.0.0.1:1110 127.0.0.1:51479 TIME_WAIT 0 TCP 127.0.0.1:1110 127.0.0.1:51481 TIME_WAIT 0 TCP 127.0.0.1:1110 127.0.0.1:51483 TIME_WAIT 0 TCP 127.0.0.1:1110 127.0.0.1:51485 ESTABLISHED 388 TCP 127.0.0.1:1110 127.0.0.1:51487 TIME_WAIT 0 TCP 127.0.0.1:1110 127.0.0.1:51489 ESTABLISHED 388 TCP 127.0.0.1:51381 127.0.0.1:1110 ESTABLISHED 5168 TCP 127.0.0.1:51485 127.0.0.1:1110 ESTABLISHED 5168 TCP 127.0.0.1:51489 127.0.0.1:1110 ESTABLISHED 5168 TCP 127.0.0.1:59264 127.0.0.1:59265 ESTABLISHED 5168 TCP 127.0.0.1:59265 127.0.0.1:59264 ESTABLISHED 5168 TCP 127.0.0.1:59268 127.0.0.1:59269 ESTABLISHED 5168 TCP 127.0.0.1:59269 127.0.0.1:59268 ESTABLISHED 5168 TCP 192.168.1.34:51278 192.168.1.33:445 ESTABLISHED 4 TCP 192.168.1.34:51383 67.199.15.132:80 ESTABLISHED 388 TCP 192.168.1.34:51486 66.102.9.18:80 ESTABLISHED 388 TCP 192.168.1.34:51490 74.125.4.20:80 ESTABLISHED 388
If you want to disconnect Skype from listening on ports 80 and 443, you can click on the link http://www.mydigitallife.info/disable-skype-from-using-opening-and-listening-on-port-80-and- 443-on-local-computer /
Vinko Vrsalovic Oct 12 '08 at 16:21 2008-10-12 16:21
source share