How To Install XAMPP Server In Linux Machine

Sure, I Can Help, Follow the steps to install XAMPP on a Linux system:

  1. Download the XAMPP Installer:
  • Click the “Download” button for the desired version.

2. Extract the Downloaded File:

  • Once the download is complete, open your terminal and navigate to the directory where you saved the downloaded file.

3. Navigate to the Downloads Directory:

  • Use the command cd downloads to move to the directory where the installer is downloaded.

4 .Open Terminal:

  • You can open the Terminal by pressing right click and open in terminal click and Ctrl + Alt + T

5. Make the Installer Executable:

  • Run the command 
chmod +x xampp-linux-x64-8.0.30.0-installer.run

6. Run the Installer:

  • Execute the installer with 
sudo ./xampp-linux-x64-8.0.30.0-installer.run.

7. Start XAMPP:

  • To start XAMPP, navigate to the installation directory with cd /opt/lampp and run sudo ./xampp start.

These steps should get XAMPP up and running on your Linux system.

How to Start the XAMPP Control Panel in Linux:

  1. Open a terminal and navigate to the XAMPP installation directory:
 cd /opt/lampp

2. Start the XAMPP Control Panel:

sudo ./manager-linux-x64.run

3. Manage XAMPP Services:

  1. You can start, stop, and restart XAMPP services (Apache, MySQL, etc.) from the control panel.
  2.  you can manage services via the terminal.
sudo /opt/lampp/lampp start
sudo /opt/lampp/lampp stop
sudo /opt/lampp/lampp restart

Its steps should help you get the XAMPP Control Panel up and running on your Linux machine.

Leave a Comment