phpMyAdmin 嘗試串連到MySQL 伺服器的錯誤解決方案

來源:互聯網
上載者:User

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

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.