Restart Services in Xampp Linux

You can restart services on xampp linux using /opt/lampp/lampp To restart, use /opt/lampp/lampp restart Here are other available options root@ip-172-31-36-153:~# /opt/lampp/lampp –help Usage: lampp start Start XAMPP (Apache, MySQL and eventually others) startapache Start only Apache startmysql Start only MySQL startftp Start only ProFTPD stop Stop XAMPP (Apache, MySQL and eventually others) stopapache Stop only … Read more

Allow phpMyAdmin remote access on xampp

xampp server only allow access to phpMyAdmin from localhost. This is because root password is set to blank by default. If you need to access phpMyAdmin over internet, it will be good to add a password protection for phpmyadmin. Create a password file /opt/lampp/bin/htpasswd -c /opt/lampp/htpasswd-phpmyadmin admin Here “admin” is the user. You will be … Read more