using phpmyadmin on bitnami to access rds instance

Solutions on MaxInterview for using phpmyadmin on bitnami to access rds instance by the best coders in the world

showing results for - "using phpmyadmin on bitnami to access rds instance"
Daniela
27 Jun 2018
1# Edit the phpMyAdmin configuration file at 
2#  /opt/bitnami/apps/phpmyadmin/htdocs/config.inc.php 
3#  and add the lines below to the end of the file:
4
5$i++;
6$cfg['Servers'][$i]['verbose'] = 'Amazon RDS';
7$cfg['Servers'][$i]['host'] = 'RDS-ENDPOINT';
8$cfg['Servers'][$i]['port'] = '3306';
9$cfg['Servers'][$i]['socket'] = '';
10$cfg['Servers'][$i]['connect_type'] = 'tcp';
11$cfg['Servers'][$i]['extension'] = 'mysqli';
12$cfg['Servers'][$i]['auth_type'] = 'cookie';
13$cfg['Servers'][$i]['AllowNoPassword'] = false;
14