mysql - Cannot start phpMyAdmin with Amazon RDS -
i have started ec2 instance in amazon , mysql rds. trying install phpmyadmin without success.. have downloaded , extracted files of phpmyadmin /var/www/html/phpmyadmin
, changed config.inc.php to:
$cfg['servers'][$i]['host'] = '[mydb].[randomstring].us-east-1.rds.amazonaws.com'; $cfg['servers'][$i]['port'] = '3306'; $cfg['servers'][$i]['socket'] = ''; $cfg['servers'][$i]['connect_type'] = 'tcp'; $cfg['servers'][$i]['extension'] = 'mysql'; $cfg['servers'][$i]['compress'] = true; $cfg['servers'][$i]['auth_type'] = 'config'; $cfg['servers'][$i]['user'] = '?????'; $cfg['servers'][$i]['password'] = '??????';
and when try enter: phpmyadmin folder following error:
"the mbstring extension missing. please check php configuration."
for amazon add before command: sudo
so looks this:
sudo yum install php-mbstring
Comments
Post a Comment