How to determine what software is using port 80 (or any other port) other than web server?
NB: Sometime you could not install web server properly, if 80 port is busy with other process.
Answer:
1. run>cmd
2. type the following:
netstat -o -n -a | findstr 0.0:80
netstat -o option is to list the PID (process ID), so I know that the<br/>process with PID 7108 is listening on port 80.
3. Now, go to task manager and search the process with PID 7108.
4. End the process of you need 80 port available for your web server.
Thank you
Comments 0