Starting a website

jochem4207jochem4207 Posts: 47
edited January 15, 2014 10:30AM in Deployment Manager
I've trouble starting a website after installation
In this SO all my code is and my situation/problem.

http://stackoverflow.com/questions/21045319/powershell-start-website-iis

Also I learned that RG automaticly start the website. So I commented that part out. But I still have the Same ISS issue in my event log.

The World Wide Web Publishing Service (WWW Service) did not register the URL prefix http://*:80/ for site 3. The necessary network binding may already be in use. The site has been disabled. The data field contains the error number.

Source: IIS-W3SVC
Event ID: 1007

Do you have any advice on this topic?

Comments

  • That error message indicates that another site in IIS is already bound to port 80. I suspect that you still have the default site enabled, and set to use port 80. To fix the problem, you can either:
    • Disable the Default site or change its binding to another port
    • Change the port you're binding your deployed site to by using the RedGateCreateWebSiteOnPort variable
    Development Lead
    Redgate Software
  • Mike Upton wrote:
    That error message indicates that another site in IIS is already bound to port 80. I suspect that you still have the default site enabled, and set to use port 80. To fix the problem, you can either:
    • Disable the Default site or change its binding to another port
    • Change the port you're binding your deployed site to by using the RedGateCreateWebSiteOnPort variable

    Indeed I still have the default website, I disabled it and it seems to work perfect now. I can't get it broken :)
Sign In or Register to comment.