Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 825 Bytes

Configure Phpmyadmin with AWS RDS.md

File metadata and controls

39 lines (33 loc) · 825 Bytes
title tip-number tip-username tip-username-profile tip-description
Configure Phpmyadmin with AWS RDS
6
Vijayanand
Configure Phpmyadmin with AWS RDS.
Step 1 : sudo apt-get install phpmyadmin
Step 2 : vim /etc/apache2/apache2.conf

Add the below 2 lines at the end of the file

# phpMyAdmin Configuration
Include /etc/phpmyadmin/apache.conf
Step 3: vi /etc/phpmyadmin/config.inc.php

Add the below lines after $i++; }

$cfg['Servers'][$i]['auth_type'] = 'HTTP';
$cfg['Servers'][$i]['hide_db'] = '(mysql|information_schema|phpmyadmin)';
/* Server parameters  change the host name as required*/
$cfg['Servers'][$i]['host'] = 'XXXXXXXXXX.cczxwknzymwh.us-west-2.rds.amazonaws.com';
Step 4: service apache2 restart