Cannot start XAMPP on Ubuntu 11.10

35,285

Solution 1

This is a peculiar error you will get if you run XAMPP in LINUX.

Assumption: XAMPP is unzipped @ /opt/ folder.

If you get the error "XAMPP: Another web server daemon with SSL is already running" when you run ./lampp start. Simply follow the steps below to get rid of this error:

  1. Open the file /opt/lampp/etc/httpd.conf.

  2. Search the Listen 80 and change it to some other port (e.g. Listen 2145) (Line No. 40).

  3. Open the file /opt/lampp/etc/extra/httpd-ssl.conf.

  4. Search the Listen 443 and change it to some other port (e.g. Listen 16443) (Line No. 39).

  5. Open the file /opt/lampp/lampp

  6. Search for the port testport 80 and replace it to testport 2145. Also change the testport 443 to testport 16443. (Happens to be the Line No. 197, 214)

  7. Now go and run /opt/lampp/lampp start. It should work now.

Note: Line numbers may be different.

Solution 2

I have similar problem and found the issue caused another service already running on port 443 (SSL).

Check running listener: sudo netstat -tunap | grep LISTEN. Mine had vmware-hostd and cupsd listed.

Refer to http://www.apachefriends.org/en/xampp-linux.html, we need turn off lamp's SSL service using the command sudo /opt/lampp/lampp stopssl, which deactivates the SSL support permanently.

Now you can start xampp: sudo /opt/lampp/lampp start

Solution 3

In the terminal, execute sudo /opt/lampp/lampp disablessl. This should disable ssl, after which xampp will start successfully again.

Share:
35,285

Related videos on Youtube

Asanka400
Author by

Asanka400

Updated on September 18, 2022

Comments

  • Asanka400
    Asanka400 over 1 year

    When I try to start XAMPP with sudo /opt/lampp/lampp start command it gives me a message like this.

    Starting XAMPP for Linux 1.7.7...
    XAMPP: Another web server daemon with SSL is already running.
    XAMPP: Starting MySQL...
    XAMPP: Couldn't start MySQL!
    XAMPP: XAMPP-ProFTPD is already running.
    XAMPP for Linux started.
    

    What is this and how can I find what was this another web server daemon with SSL. How to stop this server ?

  • Asanka400
    Asanka400 over 12 years
    Tnx bro.. :) Is there any way to stop that previously ruining server ?
  • sum2000
    sum2000 over 12 years
    That depends on which server it is, if any daemon process is using it,chances are less,first you need to know that which process is using the port by default.
  • user568021
    user568021 about 10 years
    Changing ports to 2145 and 16443 didn't work for me. This did, and I need no ssl.. thanks
  • Pranav
    Pranav over 4 years
    Worked like a charm. But is there any downside of disabling ssl in Xampp?