首页 > 数据库技术 > 详细

在linux安装mysql重启提示You must SET PASSWORD before executing this statement的解决方法

时间:2019-05-09 18:58:24      阅读:146      评论:0      收藏:0      [点我收藏+]

利用安全模式成功登陆,然后修改密码,等于给MySql设置了密码。登陆进去后,想查询所有存在的数据库测试下。得到的结果确实:

ERROR 1820 (HY000): You must SET PASSWORD before executing this statement

非常诡异啊,明明用密码登陆进去了,怎么还提示需要密码。 
参考官方的一个文档,见http://dev.mysql.com/doc/refman/5.6/en/alter-user.html。如下操作后就ok了:

mysql> show databases; 
ERROR 1820 (HY000): You must SET PASSWORD before executing this statement
mysql> SET PASSWORD = PASSWORD(‘123456‘); 
Query OK, 0 rows affected (0.00 sec)

mysql> show databases; 
5 rows in set (0.00 sec)


也就是用mysql> SET PASSWORD = PASSWORD(‘123456‘);这句话重新设置一次密码!哎,搞得真费劲啊。

在linux安装mysql重启提示You must SET PASSWORD before executing this statement的解决方法

原文:https://www.cnblogs.com/luanyulin/p/10840020.html

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