首頁  >  文章  >  資料庫  >  為什麼我在 PHPMyAdmin 中收到「使用者\'root\'@\'localhost\'\」的存取被拒絕的錯誤?

為什麼我在 PHPMyAdmin 中收到「使用者\'root\'@\'localhost\'\」的存取被拒絕的錯誤?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-11-02 19:33:30251瀏覽

Why Am I Getting

使用PHPMyAdmin 排除「使用者'root'@'localhost' 存取被拒絕」

嘗試在PHPMyAdmin 中更新可能會遇到以下錯誤:

#1045 - Access denied for user 'root'@'localhost' (using password: NO)

此錯誤導致無法訪問PHPMyAdmin 面板,讓使用者對原因感到困惑。

解決方案:

根本原因在於 phpmyadmin config.inc.php 設定檔。若要解決此問題,請開啟檔案並編輯下列程式碼片段:

$cfg['Servers'][$i]['user'] = '**your-root-username**';
$cfg['Servers'][$i]['password'] = '**root-password**';

確保將**your-root-username** 替換為所需的root 使用者名稱和**root-password**與您要設定的密碼。此外,在以下行中的密碼之前插入密碼:

$cfg['Servers'][$i]['password'] = '**root-password**';  

編輯的程式碼片段:

$cfg['Servers'][$i]['user'] = '**your-root-username**';
$cfg['Servers'][$i]['Password'] = '**root-password**';

完成這些修改後,儲存變更並重新啟動PHPMyAdmin。現在您應該能夠存取該面板並進行必要的密碼更新,而不會遇到存取被拒絕的錯誤。

以上是為什麼我在 PHPMyAdmin 中收到「使用者\'root\'@\'localhost\'\」的存取被拒絕的錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn