解决navicat连接mysql错误的防范
2023-08-03 15:42 作者:Schordinger喵 | 我要投稿
错误:
Navicat连接Mysql报错:Client does not support authentication protocol requested by server;
解决方法:
去mysql命令行(mysql command line client)敲
1、use mysql;
2、alter user 'root'@'localhost' identified with mysql_native_password by '********';
3、flush privileges;