0%

mysql数据库连接报错

mysql数据库连接报错信息Client does not support authentication protocol requested by server解决办法

报错信息

1
Client does not support authentication protocol requested by server

解决办法

1
2
3
1、use mysql;
2、alter user 'root'@'localhost' identified with mysql_native_password by '数据库密码';
3、flush privileges;