Answers for "xampp start automatically on ubuntu 20"

6

install xampp ubuntu 20.04

// download the xampp from this link
https://www.apachefriends.org/download.html

// navigate to Download folder
cd ~/Download

// make the run file exec
chmod +x xampp-linux-(xampp version)-installer.run 

// run the exec file with sudo
sudo ./xampp-linux-(xampp version)-installer.run
Posted by: Guest on March-12-2021
1

open xampp control panel from terminal ubuntu 20

//you have to stop the Apache2 and MySQL.

$sudo /etc/init.d/apache2 stop

$sudo /etc/init.d/mysql stop

//And then restart Xampp server

$sudo /opt/lampp/lampp restart
Posted by: Guest on September-24-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language