Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

8 Answers

netstat -a -b

Should tell you what program is bound to port 80

share|improve this answer
it just gave me bytes , unicast etc etc. did not give what is bound on port 80. Did I miss anything? – Aashish Apr 25 '09 at 6:35
netstat -a -b sorry – Chad Grant Apr 25 '09 at 6:45
ntoskrnl.exe - now what? – Tim Lovell-Smith Apr 24 '12 at 5:50

Use TcpView to find the process that listens to the port and close the process.

share|improve this answer

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.

share|improve this answer
This is good as there can be other processes with the same name. I am wondering if there is any kill command in windows that I can run against the found PID instead of doing it via task manager. – Sundeep Jun 26 '12 at 12:54

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.

share|improve this answer

Try netstat -anb -p tcp that show ports and processes

share|improve this answer
0.0.0.0:80 is showing apache.exe - is this fine? – Aashish Apr 25 '09 at 6:41
My xampp Application status shows both apache and mysql state 1 start 1 service 1 But the browser still does not show up the localhost. why so? any pointers? :( – Aashish Apr 25 '09 at 6:45
Sorry, I have a little knowledge on IIS, but none on Apache... – MBaas Apr 25 '09 at 7:15

Other option to try is to stop SQL Server Reporting Services.

share|improve this answer
thanks, for me it was SQL Server Reporting Services (MSSQLSERVER) don't know why but when i terminate it by services console, process with pid 4 unbinded from 0.0.0.0:80 – Vladimir Shmidt Oct 27 '11 at 9:21

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.

share|improve this answer
No I dont have an IIS. I did use xampp before and it had worked. I guess some other service is sitting on port 80 and not allowing the re-install of Apache service on it. – Aashish Apr 25 '09 at 6:29
1  
Skype also likes to steal port 80, a common unexpected culprit! – Simon_Weaver Aug 16 '11 at 20:01

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

share|improve this answer

protected by Michael Myers Jan 20 '11 at 16:32

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.