:You must reset your password using ALTER USER statement before executing this statement.
--alter user 'root'@'localhost' identified by '123456';D:\ProgramData\MySQL\MySQL Server 5.7\my.ini,最后面加上skip-grant-tables,重启mysql服务
update mysql.user set authentication_string=password('root'),password_last_changed = NOW() where user='root';
update mysql.user set password_expired='N' where user='root';
flush privileges;在my.ini最后skip-grant-tables,加上#屏蔽。
重启mysql服务
mysql5.0:
update user set password=password("new_pass") where user="root";
mysql过期了需要注册 mysql过期数据
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
mysql查看用户的过期时间
本文详细介绍了mysql查看用户的过期时间的方法,并给出了详细的代码示例,一目了然。
MySQL 应用程序 mysql -
kafka过期机制 kafka 过期数据
在上一篇文章中,已经介绍了 Producer 的发送模型,Producer dosend() 方法中的第一步,就是获取相关的 topic 的 metadata,但在上篇中并没有深入展开,因为这部分的内容比较多,所以本文单独一篇文章进行介绍,本文主要来讲述以下三个问题:metadata 内容是什么。Producer 更新 metadata 的流程。Producer 在什么情况下会去更新 metada
kafka过期机制 kafka源码系列 kafka kafka producer kafka metadata -
MapReduce分布式软件框架属于国产化吗
&nbs
mapreduce hadoop 数据 应用程序 HDFS