I have just installed Sql Server and it needed IIS.
Now when I go to http://localhost/ I get
-2147467259 (0x80004005)
I bet its IIS. How to turn it off and remove it from autostart?
|
I have just installed Sql Server and it needed IIS. Now when I go to http://localhost/ I get
I bet its IIS. How to turn it off and remove it from autostart?
| ||||
feedback
|
This question came from our site for professional and enthusiast programmers.
|
SQL Server only requires IIS if you are installing the Reporting Services functionality as well. If you don't plan on using Reporting Services, then I would remove that feature from for SQL Server installation. Then you can remove IIS. To remove IIS, it varies depending on Operating System. It's a system component, so in Windows 7 it would be Control Panel, Programs and Features, then on the side "Turn Windows Features on or off", and uncheck IIS. EDIT: To change the port, open a Run dialog and type "inetmgr", right click "Default Web Site" under Sites, and select "Edit Bindings". Select the "http" binding, click "Edit", and change the port. Or, you can removing the binding entirely. Going one step further, you can remove the Default Web Site all together. | |||||
feedback
|
|
0x80004005 is a unspecified error, check your event log and IIS logs for more information. Just disable and stop the World Wide Web Publishing Service:
If you don't want it disabled, but manual instead, replace | |||
|
feedback
|