http - Running Apache on port 80 -


I just installed xampp win32 1.7.4 in my Windows 7 computer.

When I try to open the Apache server, it says that port 80 is busy and as a result I can not run Apache server in my computer

how far should it be ?

This means that another process is already listening on port 80. To find out which process, open Command Prompt and Run in admin mode:

  netstat -abn   

which will tell you what process is each You will be able to stop the process by listening to the port. It can also be a service in which you can disable the service from the control panel.

Comments