mysql 5.7忘記root密碼

甲骨文技術支援發表於2018-12-08

臨時建立的一個測試庫,忘記了root密碼,用如下辦法可以解決:


一、透過編輯/etc/my.cnf檔案在[mysqld]下面加上skip-grant-tables=1,儲存退出;


[mysqld]
skip-grant-tables=1


二、重啟MySql服務

[root@iZ2ze7qh6q0di3qkvef1dzZ etc]# systemctl stop mysqld.service
[root@iZ2ze7qh6q0di3qkvef1dzZ etc]# systemctl start mysqld.service

三、以root身份登入mysql

[root@iZ2ze7qh6q0di3qkvef1dzZ etc]# mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.24 MySQL Community Server (GPL)
Copyright (c) 2000, 2018, 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資料庫

mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed

五、修改root密碼:

mysql> update user set authentication_string = password('HecomDB2015!@#'),password_last_changed=now() where user='root';
Query OK, 2 rows affected, 1 warning (0.00 sec)
Rows matched: 2  Changed: 2  Warnings: 1

六、退出mysql,再次編輯/etc/my.cnf檔案,將第一步中新增的skip-grant-tables=1刪掉,重啟啟動MySql服務即可。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20893244/viewspace-2284607/,如需轉載,請註明出處,否則將追究法律責任。

相關文章