Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using IIS server and wamp server on same machine

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

like image 762
Faraz Ahmed Avatar asked Dec 01 '11 12:12

Faraz Ahmed


2 Answers

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/
like image 199
Joe Avatar answered Oct 10 '22 04:10

Joe


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.

like image 25
Rashmi Kant Shrivastwa Avatar answered Oct 10 '22 04:10

Rashmi Kant Shrivastwa