rss
twitter

Friday, March 17, 2023

Installing XAMPP on Linux

Detailed steps for installing XAMPP on Linux using the terminal(Here i have installed in Ubuntu 20):

  1. Open a terminal window by pressing "Ctrl+Alt+T" on your keyboard.

  2. Change to your home directory by running the following command:

    bash
    cd ~
  3. Download the XAMPP installer for Linux from the official Apache Friends website by running the following command:

    bash
    wget https://www.apachefriends.org/xampp-files/8.1.2/xampp-linux-x64-8.1.2-0-installer.run

    This command will download the XAMPP installer to your home directory.

  4. After downloading the installer, make it executable by running the following command:

    bash
    chmod +x xampp-linux-x64-8.1.2-0-installer.run
  5. Next, run the installer as a superuser using the following command:

    bash
    sudo ./xampp-linux-x64-8.1.2-0-installer.run

    This will launch the XAMPP installer.

  6. Follow the prompts in the installer to install XAMPP. You can choose the default options for most of the prompts. However, when you're prompted to select the components to install, make sure that you select at least Apache, MySQL, and PHP. You can also choose to install other components based on your requirements.

  7. Once the installation is complete, start the XAMPP control panel using the following command:

    bash
    sudo /opt/lampp/manager-linux-x64.run

    This will launch the XAMPP control panel.

  8. In the XAMPP control panel, start the Apache and MySQL servers by clicking on the "Start" buttons next to them.

  9. That's it! You have successfully installed XAMPP on Ubuntu 20. You can now access the XAMPP dashboard by opening a web browser and navigating to http://localhost/dashboard/. From there, you can manage your XAMPP components and start developing your web applications.

Bookmark and Share

0 comments:

Post a Comment

Tech World

Label Cloud

Must Buy

  © Blogger templates by Ourblogtemplates.com updated with zenplate.com tips

Back to TOP