溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mysql 5.7忘記root密碼怎么辦

發(fā)布時間:2021-09-16 19:55:40 來源:億速云 閱讀:124 作者:chen 欄目:MySQL數(shù)據(jù)庫

這篇文章主要講解了“mysql 5.7忘記root密碼怎么辦”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“mysql 5.7忘記root密碼怎么辦”吧!

臨時創(chuàng)建的一個測試庫,忘記了root密碼,用如下辦法可以解決:

一、通過編輯/etc/my.cnf文件在[mysqld]下面加上skip-grant-tables=1,保存退出;

[mysqld]
skip-grant-tables=1

二、重啟MySql服務(wù)

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

三、以root身份登錄mysql

[root@iZ2ze7qh7q0di3qkvef1dzZ 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.

四、進(jìn)入mysql數(shù)據(jù)庫

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服務(wù)即可。

感謝各位的閱讀,以上就是“mysql 5.7忘記root密碼怎么辦”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對mysql 5.7忘記root密碼怎么辦這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI