Client does not support authentication protocol requested by server; consider upgrading MySQL client
解決方案:
切換到mysql數(shù)據(jù)庫(kù)
1.alter user 'root'@'localhost' identified with mysql_native_password by '123456';
控制臺(tái)輸出信息:Query OK, 0 rows affected (0.10 sec)
2.flush privileges;
控制臺(tái)輸出信息:Query OK, 0 rows affected (0.01 sec)
即可重新登錄宫仗。
參考來(lái)源:https://blog.csdn.net/u012965373/article/details/81206241