phpMyAdmin 尝试连接到MySQL 服务器的错误解决方法
xampp剛裝好是,出現如下問題。
- Access denied for user ‘root’@‘localhost’ (using password: YES)
使用配置文件中定義的控制用戶連接失敗。
phpMyAdmin 嘗試連接到 MySQL 服務器,但服務器拒絕連接。您應該檢查配置文件中的主機、用戶名和密碼,并確認這些信息與 MySQL 服務器管理員所給出的信息一致。
解決方法如下:
找到系統文件夾中的\...phpMyAdmin\config.inc.php配置文件
把auth_type改為http,并且把password改成我自己設的123。
? /* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123456';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
然后點擊phpmyadmin,在圖形化操作界面將mysql密碼設為123。問題解決。
我出現問題是因為密碼設置處丟失,設置為正確的密碼即可,我并沒有$cfg['Servers'][$i]['auth_type'] = 'config';改為“http”
參考內容:http://hi.baidu.com/lwbqqyumidi/blog/item/b7f6a6d94d86e4e077c6380a.html
?
總結
以上是生活随笔為你收集整理的phpMyAdmin 尝试连接到MySQL 服务器的错误解决方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Win7 局域网内访问Sql2005
- 下一篇: find总结