@jerad
To run XAMPP without using sudo
, you simply need to change the ownership of the XAMPP folder and its contents to your user account.
1
|
sudo chown -R yourusername:yourusername /opt/lampp |
Replace yourusername
with your actual username.
1
|
sudo chmod -R 755 /opt/lampp |
1 2 |
/opt/lampp/lampp start /opt/lampp/lampp stop |
By following these steps, you can run XAMPP without needing to use sudo
every time you start or stop the server.