Farheen Nilofer
Farheen Nilofer

Reputation: 171

I can't start Xampp on ubuntu 14.04

I have installed xampp-linux-x64-5.6.8-0-installer.run and when I type /opt/lampp/lampp start
to start the server I find following error
enter image description here

I tried following command to check status sudo /etc/init.d/apache2 status I find * apache2 is not running Now I tried to check the ports
netstat -tunap | grep LISTEN and it seems port 80 is busy . enter image description here

What should I do run Xampp?

Upvotes: 1

Views: 3031

Answers (4)

 wise-owl
wise-owl

Reputation: 1

try this:

change your apache xampp port to 8080, or stop apache2

 sudo systemctl stop apache2

Upvotes: 0

Pablo Solano
Pablo Solano

Reputation: 15

try this command, i tried it in ubuntu 18.04 and worked. $ sudo apachetcl stop

If it doesn't work try changing the port that Apache is trying to use. To this you should change every mention of the port 80 in /opt/lampp/etc/httpd.conf for some port that is not in use, maybe 83 for example.

Upvotes: 1

Priyanka
Priyanka

Reputation: 127

Try this:

First

sudo /etc/init.d/apache2 stop

and then

sudo /opt/lampp/lampp start

Upvotes: 3

Malarraj Sundar
Malarraj Sundar

Reputation: 1

Check apache error.log file which shows the exact issue

opt/lamp/logs/apache/error.log

Upvotes: 0

Related Questions