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

I am trying to use port 80 for my application server, but when I perform "netstat -aon" I get

TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4

When I look up the process in task manager, it shows PID 4 is SYSTEM, thats it, not extension... nothing, just "SYSTEM". Whats going on here?

I'm afraid to end this process, what do I do?


UPDATE:

I've solved this through a stackoverflow question. Follow this link to find the solution for how to get IIS to stop listening on port 80 for a specified IP address.


share|improve this question

8 Answers

up vote 7 down vote accepted

the IP adress is 0.0.0.0, state = LISTENING: means that port 80 is listening to all interfaces (not used)

How to read NETSTAT -AN results

share|improve this answer
follow the link in my update to solve it though – GiH Sep 16 '09 at 14:53
1  
"means that port 80 is listening to all interfaces (not used)" not exactly - the service "World Wide Web Publishing Service" was listening at this port. Once you manually stop it, you might free that port (at least in windows 7) – despot Jan 28 at 12:45

A new service called "Web Deployment Agent Service" (MsDepSvc) can also trigger "System" with PID=4 to listen on port 80.

share|improve this answer
can you tell which program starts this. it solved my problem – Praveen Prasad Apr 25 '11 at 8:43
   
same here, solved our problem. No Idea why though – Cilvic May 3 '11 at 7:51
4  
I had the exact same problem as original poster. Antony's answer solved my problem as I didn't have reporting services running. I had recently installed WebMatrix so perhaps "Web Deployment Agent Service" got installed as part of that package. In any event, stopping that service freed up port 80. To take port 80 like that seems pretty brazen, to me. – voam May 20 '11 at 14:37
5  
WebMatrix seems to be the issue here – Jonathan May 23 '11 at 17:46
3  
Yes, I can confirm with Jonathan that after installing WebMatrix (and its dependencies via Microsoft Web Platform Installer), the service "Web Deployment Agent Service" shows up. It is indeed not a very friendly design to use up port 80, especially if you also run Apache/IIS server on the same box. – Antony Jul 7 '11 at 18:03
show 5 more comments

Also, try stopping "SQL Server Reporting Services (MSSQLSERVER)", that apparently defaults to 80. I did that and port 80 freed up. PID identified the culprit as "System", but apparently that System can mean multiple things.

share|improve this answer
4  
GREAT.........Solved........... – user311509 Jan 7 '11 at 13:40
it help me too! – chrisramon Nov 17 '11 at 17:29
Thanks buddy! This was it! – TheGateKeeper Apr 22 '12 at 18:52
Yep, this was the culprit in my situation as well! Thanks! – Ranhiru Cooray May 22 at 9:57

I had the same problem. Could fix it by stopping the World Wide Web Publishing Service under running services.

share|improve this answer
2  
Thanks! That did the trick on Windows 8 Ultimate! – invarbrass Nov 12 '12 at 1:55
4  
Thanks! Worked on Windows 8 Enterprise as well. – friederbluemle Dec 17 '12 at 23:32
Thanks! It works for Windows 7 too – Ghost_000_cs Apr 23 at 9:23

It sounds like IIS is listening to port 80 for HTTP requests.

Try stopping IIS by going into Control Panel/Administrative Tools/Internet Information Services, right-clicking on Default Web Site, and click on the Stop option in the popup menu, and see if the listener on port 80 has cleared.

share|improve this answer
That was the issue. Thanks! – Karim Agha Oct 3 '10 at 9:12
It was on my system the IIS, but the name of the services was "WWW-Publishingdienst" (German one?) – Olivier Faucheux Aug 17 '12 at 9:49

Try netstat -b, that may hopefully shed some light on the situation (showing what .exe is using the port). Good luck.

share|improve this answer
it wasn't even showing up in netstat -b, weird, but anyway I've solved it, look for the update. – GiH Sep 15 '09 at 23:50

This wouldn't explain the PID side of things, but if you run Skype, it likes to use Port 80 for some reason.

share|improve this answer
I am facing the same problem, the port 80 is acquired by NT Kernal. But when I run Apache on port 80, it does (when configured as run-on-startup service). But when I stop Apache, and try to run Tomcat on port 80, Windows 7 do not allow. The NT Kernel or Skype should not use standard web server port. – Asif Shahzad Jun 13 '12 at 8:49

I had this same exact problem, except that i have never used IIS. While I was fixing another system bug, I had set the apache service to manual start, hoping to reduce the complexity of my system. After I fixed the other bug, apache wouldn't start. I futzed for a while, but all it took was setting apache back to automatic start: Start > Administrative Tools > Services.

Apparently when Apache starts this way, it claims port 80 before the SYSTEM process can.

hth someone. all my googling turned up the 'can't have IIS and Apache on the same machine.' this is for the other one percent of us.

share|improve this answer

protected by Jeff Atwood Jun 7 '10 at 21:24

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.