MySQL主从复制报错Authentication plugin ‘caching_sha2_password‘ reported error: Authentication requires sec
在从库执行操作: show slave status\G后,报如下错误。
Slave_IO_Running: Connecting(如果成功,这里应该显示Yes)
error connecting to master 'xiaoming@192.168.231.131:3306' - retry-time: 60 retries: 1 message: Authentication plugin 'caching_sha2_password' reported error: Authentication requires secure connection.
从报错的提示中可以看出关键词:plugin 'caching_sha2_password' reported error
进入主库
执行语句:use mysql
再执行:select plugin from`user` where user = '你的用户的名字';(我这边是xiaoming)
不出意外查询的结果为:caching_sha2_password
修改为mysql_native_password即可解决
执行语句进行修改:ALTER USER '你的名字'@'%' IDENTIFIED WITH mysql_native_password BY '你的密码';
查询结果如下就是修改成功。再进行操作就连接成功了
来源地址:https://blog.csdn.net/qq_58645958/article/details/130272982
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341