? ? ? ?[root@mysql]# mysql -u root -p
? ? ? ?Enter password:?
? ? ? ?ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords.
? ? ? ?解決辦法:
? ? ? ?1、在my.cnf? mysqld 部分加入 skip-grant-tables 參數(shù)。
? ? ? ?[mysqld]
? ? ? ?skip-grant-tables
? ? ? ?2、重啟mysql數(shù)據(jù)庫,然后登陸
? ? ? ?[root@llmj-mysql-40-115 tools]# mysql -u root -p
? ? ? ?Enter password:? ?#這里直接回車,不需要密碼即可登陸
? ? ? ?Welcome to the MySQL monitor.? Commands end with ; or g.
? ? ? ?Your MySQL connection id is 2
? ? ? ?Server version: 5.7.14-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.
? ? ? ?3、查看mysql的用戶狀態(tài)
? ? ? ?>select host,user,password_expired,account_locked from mysql.user;
? ? ? ?+-----------+-----------+------------------+----------------+
? ? ? ?| host? ? ? | user? ? ? | password_expired | account_locked |
? ? ? ?+-----------+-----------+------------------+----------------+
? ? ? ?| localhost | root? ? ? | Y? ? ? ? ? ? ? ? | N? ? ? ? ? ? ? |
? ? ? ?| localhost | mysql.sys | N? ? ? ? ? ? ? ? | Y? ? ? ? ? ? ? |
? ? ? ?+-----------+-----------+------------------+----------------+
? ? ? ?3 rows in set (0.00 sec)
? ? ? ?password_expired :y說明密碼已經(jīng)過期,可以改成N,則是未過期
? ? ? ?>update mysql.user set password_expired='N';
? ? ? ?Query OK, 1 row affected (0.03 sec)
? ? ? ?Rows matched: 2? Changed: 1? Warnings: 0
? ? ? ?4、然后注釋掉skip-grant-tables參數(shù)
? ? ? ?重啟mysql,用過期的密碼即可登陸了,登陸之后可以用下面的命令修改密碼
? ? ? ?>alter user user() identified by '123456';
? ? ? ?Query OK, 0 rows affected (0.03 sec)
? ? ? ?>flush privileges;
? ? ? ?Query OK, 0 rows affected (0.03 sec)
? ? ? ?以上是南昌網(wǎng)絡(luò)公司百恒科技小編要跟大家聊到的關(guān)于root密碼過期的解決辦法,希望能夠?qū)Υ蠹矣兴鶐椭?,想要了解更多關(guān)于這方面的內(nèi)容,歡迎留言咨詢百恒科技,百恒科技是一家有著16年豐富經(jīng)驗(yàn)的網(wǎng)絡(luò)公司,專注于南昌網(wǎng)站建設(shè)開發(fā)、南昌APP開發(fā)等一系列互聯(lián)網(wǎng)服務(wù)!
相關(guān)文章推薦? ?:? ? 微信公眾號(hào)如何添加卡券功能?? ??
? ? ? ? ? ? ? ? ? ? ? Linux平臺(tái)下安裝FFmpeg的流程是怎樣的?? ? ?