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;
其他注意事項:
完整程式碼解決方案:
Bash 命令:
sudo /etc/init.d/mysql stop sudo mysqld_safe --skip-grant-tables & mysql -uroot
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;
Bash 指令(續):
sudo /etc/init.d/mysql stop sudo /etc/init.d/mysql start mysql -u root -p
以上是為什麼連接 MySQL 時出現「插件『auth_socket』未載入」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!