MySQL密码过期该怎么办

网友投稿 262 2023-12-25

MySQL密码过期该怎么办

这篇文章给大家介绍MySQL密码过期该怎么办,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

MySQL密码过期该怎么办

1、报错提示

ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords;

2、解决方法

  (1)停止MySQL数据

  (2)以忽略密码方式启动mysql数据库,并进入数据库;

        在my-f文件中的[mysqld]添加skip-grant-tables参数

(3)进入MySQL的中的mysql库(该命令为多实例进入命令)

  [root@host1 data4]# mysql -S /tmp/mysql.sock2

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 3

Server version: 5.7.16-log MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type help; or \h for help. Type \c to clear the current input statement.

mysql> 

(4)讲password_expired设置为永不过期,

  mysql> update user set password_expired="N" where user="root";

Query OK, 1 row affected (5.06 sec)

Rows matched: 1  Changed: 1  Warnings: 0

(5)退出后,关闭MySQL并注销my-f中的skip-grant-tables参数

进入mysql数据库后重新配置密码;

关于MySQL密码过期该怎么办就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:基于Query-Digest-UI对mysql慢日志web可视化是怎么样的
下一篇:如何理解MySQL中的截断
相关文章

 发表评论

暂时没有评论,来抢沙发吧~