我正在尝试在 MySQL 和 phpMyAdmin 上启动并运行,但在登录 phpMyAdmin 时一直遇到问题。当使用没有密码的默认用户名“root”和我通过终端设置的密码时,我得到“#2002 无法登录到 MySQL 服务器”。
这是我的 config.inc.php 文件的相关部分:
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'admin'; //I have also tried 'root' here with no password
$cfg['Servers'][$i]['password'] = 'PASSWORD';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
我试过的:
我完全被困住了。
系统/版本详细信息:Mac OSX 10.7.5 phpMyAdmin 3.5.7 MySQL 5.5.28