1. 程式人生 > >mariadb 出現 Client does not support authentication protocol requested by server;...

mariadb 出現 Client does not support authentication protocol requested by server;...

mariadb 出現 Client does not support authentication protocol requested by server;consider upgrading MariaDB client的錯誤

解決方法:

進入mysql命令列,執行下面的語句:

use mysql;

update user set authentication_string=password(''),plugin='mysql_native_password' where user='root';