码迷,mamicode.com
首页 > 数据库 > 详细

mysql Authentication plugin 'caching_sha2_password' is not supported问题处理

时间:2020-05-25 19:54:59      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:失败   mysql   not   解决   mysq   user   mysql8   方法   ica   

使用mysql8.0版本,登录失败,提示 Authentication plugin ‘caching_sha2_password‘ is not supported。

原因是在MySQL 8.0以后,默认的密码加密方式是caching_sha2_password而不是mysql_native_password。

解决方法:

1.登录mysql数据库 mysql -u root -p

2.更新身份认证方式 ALTER USER ‘你的用户名‘ IDENTIFIED WITH mysql_native_password BY ‘你的用户密码‘;

mysql Authentication plugin 'caching_sha2_password' is not supported问题处理

标签:失败   mysql   not   解决   mysq   user   mysql8   方法   ica   

原文地址:https://www.cnblogs.com/kerwincui/p/12960298.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!