Follow below steps to configure: Step 1: Install Apache Web Server sudo apt-get update -y sudo apt-get install apache2 -y sudo systemctl start apache2.service Verify that Apache was installed without errors by accessing it from your local browser. Enter http://SERVER_IP/ Step 2: Install PHP sudo apt-get install php -y sudo apt-get install -y php-{bcmath,bz2,intl,gd,mbstring,mcrypt,mysql,zip} sudo apt-get install libapache2-mod-php -y Step 3: Restart Apache systemctl restart apache2.service Step 4: Install and configure phpMyAdmin cd /var/www/html/ Download phpMyAdmin from an authorized website using wget command wget https://files.phpmyadmin.net/phpMyAdmin/4.7.3/phpMyAdmin-4.7.3-all-languages.zip Unzip phpMyAdmin unzip phpMyAdmin-4.7.3-all-languages.zip Rename phpMyAdmin and go to phpMyAdmin folder mv phpMyAdmin-4.7.3-all-languages phpmyadmin cd phpmyadmin Edit the configuration file for phpMyAdmin. vim config.sample.inc.php Below is a default file /* Server ...