I installed xampp 1.6.8 and for some reason it did'nt work. Later realized port 80 is not free or not listening. How can I release it or make it free?
Thanks a lot!
|
I installed xampp 1.6.8 and for some reason it did'nt work. Later realized port 80 is not free or not listening. How can I release it or make it free? Thanks a lot! |
|||
|
|
netstat -a -b Should tell you what program is bound to port 80 |
|||||||
|
|
Use TcpView to find the process that listens to the port and close the process. |
|||
|
|
|
netstat -ano That will show you the PID of the process that is listening on port 80. After that, open the Task Manager -> Processes tab. From the View -> Select Columns menu, enable the "PID" column, and you will see the name of the process listening on port 80. |
|||
|
|
I had this problem previously, if you see the Task manager(after enabling the view for PID), you will find PID=4 is "port 80 in use by NT Kernel & System; " Just go to Control Panel > Programs > Turn Windows features on/off > check if the World wide web services under IIS is checked. If so, Uncheck and netstat(or TCPVIEW) again to see if 80 is free. |
||||
|
|
|
Try netstat -anb -p tcp that show ports and processes |
|||||||
|
|
Other option to try is to stop SQL Server Reporting Services. |
|||
|
|
This is just a guess, but since port 80 is the conventional port for HTTP, you may have a webserver running on your system. Is IIS active? If you are running IIS you may have the web farm service running. That was what was killing my xampp. |
|||||||
|
|
that agony has been solved for me, i found out that what was taking over port 80 is http api service, i wrote in cmd net stop http asked me the following services will be stopped, do you want to continue? pressed y it stopped a number of services actually.. then wrote localhost and wallah, apache is up and running on port 80.... hope this helps |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.