Using IIS server and wamp server on same machine

11,947

Solution 1

If you want to run them both together, you need to run one on a different port.

For WAMP/Apache, change httpd.conf

listen 80
to
listen 81
(or some other unused port number). Then to access, you'd go to
http://localhost:81/

Solution 2

In wamp server change your listening port to 80 to some other like 8080 and start all service basicaly you find this in apache httpd config file.

Share:
11,947
Faraz Ahmed
Author by

Faraz Ahmed

Classical emotional developer.

Updated on June 15, 2022

Comments

  • Faraz Ahmed
    Faraz Ahmed about 2 years

    I am using windows 7 and wamp server 2.2, I have installed the wamp server and i have already installed IIS server now when i access localhost always IIS server is loading but i want to use wamp server instead of IIS server.

    thanks in advance

  • Mehdi Dehghani
    Mehdi Dehghani almost 5 years
    Path of httpd.conf: ...\wamp64\bin\apache\apache2.4.39\conf