Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WAMP - Your port 80 is actually used - Error

I installed Wamp server and when I open it, it never gets online. It always stays orange (offline). I read something about Skype, but I don't even have Skype installed and when I go to Apache > Service > Test port 80 it says: Your port 80 is actually used

Any ideas how to make this work?

like image 836
Agustín Avatar asked Sep 25 '13 22:09

Agustín


People also ask

How can I change WAMP 80 to 81?

Windows services that listen on port 80Right click WAMP icon in the system tray and select Tools. Here you can change the port number for Apache and MySQL. Select Test Port 80 for Apache. A command prompt will open.

Why Wamp server is not working?

It says that whatever port is used by Apache (Wamp server) is currently used by some other service, so if you want to start the Apache service then you have to changethe port of this Wampserver service. Now for changing the port you have to go to Wampserver menu => Apache. Open httpd. conf file.

What port is WAMP using?

This is because my 80 port which default in Wamp server is being used by IIS server.


1 Answers

If you are using windows machine the port 80 is used by the IIS Server and Skype also used the port 80. that why it says that port 80 is already used. To avoid the conflict,change the port number of the wamp server to some other number,for example 5050.

for changing the port number of the wamp server go to: C:\wamp\bin\apache\apache2.4.9\conf\httpd.conf

In that file change the listen port to 5050.

#Listen 12.34.56.78:5050

Listen 0.0.0.0:5050

Listen [::0]:5050

and you access the wamp server at localhost:5050

It works for me and I hope it works.

like image 90
Deepan Murugan Avatar answered Oct 08 '22 10:10

Deepan Murugan