vote up 0 vote down star

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.


flag

7 Answers

vote up 1 vote down check

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|flag
follow the link in my update to solve it though – GiH Sep 16 at 14:53
vote up 1 vote down

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|flag
vote up 2 vote down

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

link|flag
it wasn't even showing up in netstat -b, weird, but anyway I've solved it, look for the update. – GiH Sep 15 at 23:50
vote up 0 vote down

Do you by chance have IIS installed and running (possibly by default)?

link|flag
vote up 0 vote down

Is your IIS default website started? If so, stop it.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

exactly used by skype, stop it, start xampp worked

link|flag

Your Answer

Get an OpenID
or

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