任何人都可以帮助我。我无法访问phpMyAdmin。我正在使用WAMPSERVER 2.4并运行Windows 7 32位操作系统。
每次我尝试访问phpMyAdmin时都会出现如下错误:
错误 MySQL说:文档
phpMyAdmin尝试连接到MySQL服务器,服务器拒绝连接。您应该检查配置中的主机,用户名和密码,并确保它们与MySQL服务器管理员提供的信息一致。
答案 0 :(得分:1)
与最初安装后的所有MySQL版本一样,只有一个用户帐户可用。
用户名为root
,此帐户中没有密码。
所以在phpMyAdmin的登录页面输入:
username = root
password = leave this empty
登录后,请为此帐户添加密码。 不要忘了!
设置密码并测试可以使用该密码再次登录后,您可以对此文件进行简单的更改:
C:\瓦帕\ WWW \ APPS \ phpmyadminx.y.z \的config.inc.php
寻找:
$cfg['Servers'][$i]['AllowNoPassword'] = true;
并将其改为
$cfg['Servers'][$i]['AllowNoPassword'] = false;
这将阻止phpmyadmin允许使用没有密码的用户标识进行访问。
答案 1 :(得分:0)
编辑你的phpmyadmin config.inc.php文件:
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = '**your-root-username**';
$cfg['Servers'][$i]['password'] = '**root-password**';
$cfg['Servers'][$i]['AllowNoPassword'] = true;