Navicat遇上MYSQL8.0报错:Authentication plugin 'caching_sha2_password'问题的解决方案

1、进入CMD命令符窗口(win+R)

Navicat遇上MYSQL8.0报错:Authentication plugin 'caching_sha2_password'问题的解决方案_第1张图片

2、进入mysql安装目录的bin路径下运行mysql -uroot -p命令进行登录(密码是安装mysql时设置的密码)

Mysql若是默认安装路径:则输入cd "C:\Program Files\MySQL\MySQL Server 8.0\bin"

Navicat遇上MYSQL8.0报错:Authentication plugin 'caching_sha2_password'问题的解决方案_第2张图片

输入密码:

Navicat遇上MYSQL8.0报错:Authentication plugin 'caching_sha2_password'问题的解决方案_第3张图片

OK:

Navicat遇上MYSQL8.0报错:Authentication plugin 'caching_sha2_password'问题的解决方案_第4张图片

3、输入ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'newpassword';

(root是用户名,把newpassword替换成你想设置的密码,最后别忘了分号;)

4、进入Navicat创建连接

选择MySQL

Navicat遇上MYSQL8.0报错:Authentication plugin 'caching_sha2_password'问题的解决方案_第5张图片

输入连接名,你刚才cmd中设置的密码,确定:

Navicat遇上MYSQL8.0报错:Authentication plugin 'caching_sha2_password'问题的解决方案_第6张图片

完成~

 

 

 

你可能感兴趣的:(Navicat遇上MYSQL8.0报错:Authentication plugin 'caching_sha2_password'问题的解决方案)