MySQL authentication plugin 'caching_sha2_password' cannot be loaded 問題

SeabirdTendLin發表於2019-01-12

MySQL版本是 8.0.13

在使用Navicat時連結資料庫出現上述問題:authentication plugin 'caching_sha2_password' cannot be loaded,所以認為是外掛問題。

1、修改外掛 ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'archiver';

2、此時產生一個問題,MySQL的登入密碼會出錯,所以重新修改密碼

      ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY '新的密碼';

3、flush privileges;

問題解決!

相關文章