Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / IIS

How to Change Default Port of IIS Manager from 80 in Windows 8.1

5.00/5 (3 votes)
10 Jan 2014CPOL1 min read 132.8K  
How to change default port of IIS Manager from 80 in Windows 8.1

After installing IIS on any Windows machine, by default IIS Server listens on port 80. The same is true with Windows 8.1. Most of the times, it works fine. However, in some cases, we need to modify this port from 80 to a different port. One of the scenarios where you might need to change this port is if you want to run Wamp side by side your IIS on your local computer. This post will explain how to change the default listening port of IIS from 80 to any other port of your choice.

To change the default port, follow the below steps:

  • Start typing “IIS Manager” on your start screen in Windows 8 and Windows 8.1
  • Select “Internet Information Services Manager” from the search results returned.

    IIS-1

  • Select “Default Web Site” from the left tree in IIS manager.

    IIS-2

  • Click Bindings from the right sidebar to open a dialog box.
  • Select “http” record from the grid and hit Edit.

    IIS-3

  • Enter your choice of port number in “Port” Text box and hit OK.

    IIs-4

  • Hit Close on the parent dialog box to close the window.
  • Select your server node again from the left tree and hit “Restart Server” from the right sidebar to restart IIS server.

    IIS-5

  • You’re done! Go to http://localhost:<YOUR_PORT>/ to browse your IIS at new port.

Thanks for reading this post. Hope you like this. If you have any doubts or know other ways of doing the same, share them via comments.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)