Skip to main content

phpMyAdmin Configuration

/* Authentication type - set to config, avoids login */
$cfg['Servers'][$i]['auth_type'] = 'config';

$cfg['Servers'][$i]['host'] = '<db endpoint address in RDS instance properties>';
$cfg['Servers'][$i]['port'] = '<port, 3306 for MariaDB>';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['user'] = '<master username, check RDS instance details>';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['password'] = '<master password, created during RDS instance creation>';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;