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