Skip to content

Instantly share code, notes, and snippets.

@banarsiamin
Last active March 1, 2024 06:25
Show Gist options
  • Save banarsiamin/2370939631c6246a65630075834f4f1f to your computer and use it in GitHub Desktop.
Save banarsiamin/2370939631c6246a65630075834f4f1f to your computer and use it in GitHub Desktop.
Instal ubuntu-xampp
sudo -s
apt update
apt upgrade
wget chmod +x xampp-linux-x64-8.2.12-0-installer.run
chmod +x xampp-linux-x64-8.2.12-0-installer.run
./xampp-linux-x64-8.2.12-0-installer.run
#In order to start all the xampp services, we need to run the following command in the terminal:
/opt/lampp/xampp start
/opt/lampp/xampp stop
/opt/lampp/xampp restart
#Start Apache only:
/opt/lampp/xampp startapache
/opt/lampp/xampp stopapache
#Start Proftpd FTP server only:
/opt/lampp/xampp startftp
/opt/lampp/xampp stopftp
#Start MySQL Database server only:
/opt/lampp/xampp startmysql
/opt/lampp/xampp stopmysql
#Xampp help
/opt/lampp/xampp --help
#Xampp uninstall
/opt/lampp/uninstall
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment