up vote 15 down vote favorite
5
share [g+] share [fb]

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.


link|improve this question

feedback

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.

7 Answers

up vote 3 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

link|improve this answer
follow the link in my update to solve it though – GiH Sep 16 '09 at 14:53
feedback

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

link|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
1  
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
2  
WebMatrix seems to be the issue here – Jonathan May 23 '11 at 17:46
2  
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
feedback

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.

link|improve this answer
1  
GREAT.........Solved........... – user311509 Jan 7 '11 at 13:40
it help me too! – chrisramon Nov 17 '11 at 17:29
feedback

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.

link|improve this answer
That was the issue. Thanks! – Karim A. Oct 3 '10 at 9:12
feedback

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

link|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
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

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