Windows Admin Center and 503 Service Unavailable error
Published May 17 2019 07:33 AM 7,420 Views
Microsoft

Windows Admin Center is a browser-based application to manage server environments by using multiple Microsoft products such as System Center, RSAT, and PowerShell. When it is installed in an IIS server, localhost may start displaying “503 Service Unavailable” error.

 

Root cause

Windows Admin Center works as a gateway between clients and servers. It redirects HTTP traffic to HTTPS port (443). That’s how users reach to Windows Admin Center dashboard by default when they browse to the server.

 

1.png

Source of the diagram above: What is Windows Admin Center?

 

Even if you uninstall Windows Admin Center, the HTTP traffic still goes to the dashboard. If you install IIS to that server, you will see “503 Service Unavailable” because localhost is still bound to Windows Admin Center instead of IIS Default Web Site.

 

Solution

Remove the port 80 entries from the server to solve this issue.

First list all entries:

netsh http show urlacl

Then run the "netsh http delete urlacl" command for the entries with port 80:

netsh http delete urlacl url=http://+:80/

 

2 Comments
Copper Contributor

Thank you. Your solution solve the problem!

Copper Contributor

Many thanks for the commands -:))

Version history
Last update:
‎May 17 2019 07:50 AM
Updated by: