Mobile app version of vmapp.org
Login or Join
Jennifer507

: IIS 7.5 site is stopped, but it still responds to requests with 404 errors What you'd expect when you select a site in the IIS console and choose the "stop" button is that all bound ports

@Jennifer507

Posted in: #Iis7 #WindowsServer2008

What you'd expect when you select a site in the IIS console and choose the "stop" button is that all bound ports would stop responding, right? That's what it did in earlier versions of IIS, at least.

What I'm seeing today (on more than one server) is that, when I stop the site, the SSL port 443 stops as expected, but port 80 stays open -- and it keeps responding to requests with 404 Not Found errors!

TCPView shows that port 80 is being used by "System service" with a PID of 0. Process Explorer does not show PID 0 using port 80.

This is IIS 7.5 on Windows Server 2008 R2 x64. Is this perhaps some fancy new feature of the Windows Firewall? (The service is running, but the firewall is disabled by Group Policy.)

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Jennifer507

1 Comments

Sorted by latest first Latest Oldest Best

 

@Radia820

Sounds like either something is sharing the port or its failing to shut down correctly

Run a netsh http show servicestate to diagnose if anything is running on the HTTP Service.

Additionally do a netstat -ano and see if the IIS service is running on a ID. (I know you said TCPView is reporting ID:0 but this doesn't sound right and I'd put more trust in the netstat command.

If you find its still running then a simple taskkill /pid:IDNUMBERHERE should do the trick.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme