4

I'm trying to start XAMPP server via :

$ sudo /opt/lampp/lampp start

Get me :

Starting XAMPP for Linux 1.8.3-0...
XAMPP: Starting Apache...fail.
XAMPP:  Another web server is already running.
XAMPP: Starting MySQL...ok.
XAMPP: Starting ProFTPD...ok.

As you can see above, all packages run successfully except Apache.

Please tell me what to do ?

Edit:

The netstat -a -no output was a long file and i saved it on a third-party site.

1 Answers1

24

Try using this :

sudo /etc/init.d/apache2 stop

then try starting your xampp

sudo /opt/lampp/lampp start
Sammy
  • 408