解決PHPMyAdmin 中「root」使用者的存取被拒絕問題
使用者在嘗試在PHPMyAdmin 中設定root 密碼時可能會遇到存取被拒絕的錯誤PHPMyAdmin。此訊息通常顯示為「使用者'root'@'localhost'的存取被拒絕(使用密碼:NO)。」
根本原因:
PHPMyAdmin 無法使用提供的root 憑證連接到資料庫。
解決方案:
要修正此問題,您需要編輯 phpmyadmin config.inc.php 檔案。找到以下程式碼區塊:
$cfg['Servers'][$i]['user'] = '**your-root-username**'; $cfg['Servers'][$i]['password'] = '**root-password**';
確保「Password」字串出現在密碼值之前,如下所示:
$cfg['Servers'][$i]['user'] = '**your-root-username**'; $cfg['Servers'][$i]['password'] = 'Password: **root-password**';
此外,驗證root 使用者名稱和密碼是否為正確的。儲存檔案並嘗試再次造訪 PHPMyAdmin。現在錯誤應該已解決,您可以訪問該面板。
以上是為什麼我在 PHPMyAdmin 中設定 root 密碼時收到「使用者 \'root\'@\'localhost\'\ 的存取被拒絕」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!