I enabled IIS on Windows 7 but it's not working

1

I followed Windows instructions, and turned on several parts of IIS. But http://localhost isn't working, and I don't see the IIS entry in Administrative Tools either.

I only want to use SSI, not ASP(.net) or FTP. What should I check and why isn't it working? It didn't ask me to restart Windows, is that required?

OK I have management console now but no joy. "Default Web Site" is shown as stopped, when I try to start it I get:

Internet Information Services (IIS) Manager

The process cannot access the file because it is being used by another process. (Exception from HRESULT: 0x80070020)

iis
windows-7
server-side-includes
asked on Server Fault May 27, 2010 by Mr. Boy • edited Jul 22, 2010 by squillman

2 Answers

2

Basically it is some other application that is bound to 80 and is not allowing website on IIS to use it.

The following command should help you to find out the application/pid using port 80.

netstat -ab | find ":80 "

change 80 with custom port in case you are running website off a custom port.

In my case it was skype that was using it. Very strange. Closed skype and then started website, website ran fine. Then started skype too. Skype running fine too.

answered on Server Fault Apr 4, 2012 by user70410
0

You need to check "IIS Management Console" under Internet Information Services -> Web Management Tools.

answered on Server Fault May 27, 2010 by Vivek Kumbhar

User contributions licensed under CC BY-SA 3.0