Daily Archive: July 22, 2017

phpMyAdmin RDS 520x245 - Integrating phpMyAdmin with Amazon RDS Service - MySQL Instance | AWS Tutorials 1

Integrating phpMyAdmin with Amazon RDS Service – MySQL Instance | AWS Tutorials

In this tutorial, we will demonstrate the integration of phpmyadmin with running Amazon RDS MySQL instance. Kindly follow the instructions listed below. Default Document Root folder: /var/www/html cd /var/www/html Download phpMyAdmin from the authorized website or use the wget command below. wget https://files.phpmyadmin.net/phpMyAdmin/4.7.3/phpMyAdmin-4.7.3-all-languages.zip Unzip the phpMyAdmin. unzip phpMyAdmin-4.7.3-all-languages.zip mv phpMyAdmin-4.7.1-all-languages phpmyadmin && cd phpmyadmin Edit the configuration file for phpMyAdmin. mv config.sample.inc.php config.inc.php Default File vim config.inc.php /* Server parameters */ $cfg[‘Servers’][$i][‘host’] = ‘localhost’; $cfg[‘Servers’][$i][‘compress’] =...