Mysql的caching_sha2_password的坑
Posted yangzhou33
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql的caching_sha2_password的坑相关的知识,希望对你有一定的参考价值。
概述
今天我用homebrew安装mysql8.0,安装完成之后,用Workbench和Sequel Pro连接数据库都失败了,并且都报caching_sha2_password相关的错误,经过查资料,原因是Mysql8.0的默认认证方式改用sha2了,但是Workbench和Sequel Pro里面都没有sha2的插件,所以报错了。我把解决方法记录下来,供以后开发时参考,相信对其他人也有用。
解决方法
网上流行的解决方案是把sha2认证改回以前的认证方式,方法如下:
// 启动Mysql服务
mysql.server start
// 登录Mysql(需要输入密码)
mysql -u root -p
// 选择数据库(这一步不可省略)
use mysql
// 查看plugin设置
select host, user, plugin from user;
// 可以看到root的plugin是caching_sha2_password,我们希望改成mysql_native_password
ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY 'xxxxx';
// 大功告成,关闭Mysql
exit
mysql.server stop
其它
其实我们还可以用ssh进行免密登录,这样就绕过了caching_sha2_password认证了(我的猜想)
以后用ssh登录试一试~~
以上是关于Mysql的caching_sha2_password的坑的主要内容,如果未能解决你的问题,请参考以下文章
Mysql8.0升级后,Navicat连接报错caching_sha2_password 问题
mysql8.0 Authentication plugin 'caching_sha2_password' cannot be loaded
mysql8.0 Authentication plugin 'caching_sha2_password' cannot be loaded
mysql8.0 Authentication plugin 'caching_sha2_password' cannot be loaded
Navicat 连接MySQL数据库 报错2059 - authentication plugin 'caching_sha2_password'的解决办法