这主要是配置文件中没有设置正确的管理员用户名和密码,打开/etc/phpmyadmin/config.inc.php,根据错误提示,找到控制用户的代码:
$cfg['Servers'][$i]['controluser'] = 'pma'
$cfg['Servers'][$i]['controlpass'] = 'pmapass'
删掉等号后面的东西,改成:
$cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = '123456';
config.inc.php中
$cfg['Servers'][$i]['auth_type'] = 'http';
这里的http即可实现弹出对话框提示用户输入 帐号/密码