2059 - authentication plugin 'caching_sha2_password'解决方法

最近mysql不知道怎么搞得突然出了问题,最后迫于无奈只好重新下载了一个8.0版本的。但是下载下来后又出现了新的问题,使用navicat连接mysql时提示我2059 - authentication plugin 'caching_sha2_password'???喵喵震惊。解决方法如下

进入MySQL控制台,执行如下命令:
通过使用命令行工具(MySql 8.0 Command Line Client)执行设置的修改,我们先登陆MySql的客户端,执行以下命令就可以了。

use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';

这里的localhost对应本地,如果是远程访问 mysql的话,需要将localhost改成%;
password是root的密码,使用时也要进行对应修改。

你可能感兴趣的:(2059 - authentication plugin 'caching_sha2_password'解决方法)