首页 > 数据库技术 > 详细

连接mysql出现“Unable to load authentication plugin 'caching_sha2_password”错误

时间:2020-07-27 23:57:48      阅读:1856      评论:0      收藏:0      [点我收藏+]

这是mysql 8.0版本才出现的问题,原因是mysql 8.0 默认使用 caching_sha2_password 身份验证机制 —— 从原来的 mysql_native_password 更改为 caching_sha2_password。

  解决办法:

    可以更换版本但是感觉治标不治本,建议修改身份验证机制

    1、登陆mysql

      在mysql的bin目录下打开cmd(默认是C:\Program Files\MySQL\MySQL Server 8.0\bin)

      输入:mysql -uroot -p     接着输入密码

    2、登陆mysql成功之后输入:

      alter user ‘root‘@‘localhost‘ identified by ‘root‘ password expire never;

      alter user ‘root‘@‘localhost‘ identified with mysql_native_password by ‘root‘

      flush privileges;

      其中root为mysql密码

完美解决

 

连接mysql出现“Unable to load authentication plugin 'caching_sha2_password”错误

原文:https://www.cnblogs.com/unchain/p/13387251.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!