首页 > 数据库技术 > 详细

mysql 报错:ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

时间:2021-08-05 10:15:29      阅读:27      评论:0      收藏:0      [点我收藏+]

原因是需要修改密码

重新修改密码即可:

1、用root用户登录

2、修改密码命令

update mysql.user set authentication_string=password(‘the_password’) where user=’root’;

set password=password(‘the_password’);

mysql 报错:ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

原文:https://www.cnblogs.com/Sunshine-bing/p/15101320.html

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