Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Busy... Apache started [Port 80]

Tags:

port

apache

xampp

I use XAMPP 1.7.7 after start Apache I get this alert:

Busy...
Apache started [Port 80]

And I have opened the httpd.conf file and I have changed the port number to 8080 or 85. But I still have above alert after reset XAMPP and start apache.

What should I do?

like image 501
JimBo Avatar asked Oct 24 '11 21:10

JimBo


1 Answers

It is because teamviewer or skype is using this port by defalut in you system. So the port 80 is busy , either you can try by changing the port number of skype/teamvier

Or go with the following Solution

Goto - >C:\xampp\apache\conf

open File - httpd.conf

Make changes as below

Listen 8080

ServerName localhost:8080

C:\xampp\apache\conf\extra

open->httpd-ssl.conf

Make changes as below

Listen 4499

ServerName localhost:4499

Restart apache now :)

http://localhost:8080

like image 54
Chaitanya K Avatar answered Nov 22 '22 12:11

Chaitanya K