首頁  >  文章  >  資料庫  >  為什麼連接 MySQL 時出現「插件『auth_socket』未載入」錯誤?

為什麼連接 MySQL 時出現「插件『auth_socket』未載入」錯誤?

Susan Sarandon
Susan Sarandon原創
2024-11-19 03:18:02647瀏覽

Why Am I Getting

MySQL 外掛程式'auth_socket' 載入錯誤

在此問題中,使用者在嘗試使用CLI 登入MySQL 時遇到以下錯誤:

mysql "ERROR 1524 (HY000): Plugin 'auth_socket' is not loaded"

這個錯誤表示負責socket認證的MySQL外掛程式沒有載入。要解決此問題,使用者必須:

更新驗證外掛:

重設root 密碼(步驟2)時,使用者也必須修改驗證外掛程式到「 mysql_native_password”:

use mysql;
update user set authentication_string=PASSWORD("") where User='root';
update user set plugin="mysql_native_password" where User='root';  # THIS LINE
flush privileges;
quit;

其他注意事項:

  • 使用127.0.0.1 而不是本地主機:
  • 跳過套接字問題:建立、操作或連結 mysqld.sock 檔案不是錯誤的根本原因。
  • 跳過my.cnf: my.cnf 設定檔也不是一個因素

完整程式碼解決方案:

  1. Bash 命令:

    sudo /etc/init.d/mysql stop
    sudo mysqld_safe --skip-grant-tables &
    mysql -uroot
  2. MySQL命令:

    use mysql;
    update user set authentication_string=PASSWORD("") where User='root';
    update user set plugin="mysql_native_password" where User='root';
    flush privileges;
    quit;
  3. Bash 指令(續):

    sudo /etc/init.d/mysql stop
    sudo /etc/init.d/mysql start
    mysql -u root -p

以上是為什麼連接 MySQL 時出現「插件『auth_socket』未載入」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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