1. 程式人生 > >MySQL安裝時出現的問題

MySQL安裝時出現的問題

mysql安裝

mysql正常安裝結束之後需要連接你所安裝的數據庫的時候出現下面的錯誤:

Client does not support authentication protocol requested by server;consider upgrading mysql client

解決方法:
啟動:mysql 8.0 command line client

之後輸入下面的代碼即可。
use mysql;
ALTER USER ‘root‘@‘localhost‘ IDENTIFIED WITH mysql_native_password BY ‘123qwe!@#‘;
FLUSH PRIVILEGES;

MySQL安裝時出現的問題