遇到的问题:

Navicat 连接Mysql报错:Client does not support authentication protocol requested by server_mysql

 

解决办法:

use mysql;

alter user 'root'@'localhost' identified with mysql_native_password by 'root';

flush privileges;

Navicat 连接Mysql报错:Client does not support authentication protocol requested by server_mysql_02

 

Navicat 连接Mysql报错:Client does not support authentication protocol requested by server_mysql_03