問題:navicat連接mysql時報錯:1251-Client does not support authentication protocol requested by server; consider upgrading MySQL client
解決方法:打開mysql輸入以下命名:
use mysql; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密碼'; FLUSH PRIVILEGES;
其中,root為用戶名,你的密碼改為用戶名對應的密碼即可