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

遇到的问题:

Navicat 连接Mysql报错:Client does not support authentication protocol requested by server_第1张图片

 

解决办法:

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_第2张图片 

Navicat 连接Mysql报错:Client does not support authentication protocol requested by server_第3张图片 

你可能感兴趣的:(服务器,运维)