溫馨提示×

溫馨提示×

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

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

mysql忘記密碼真的需要重啟服務(wù)嗎?

發(fā)布時間:2020-07-08 09:43:56 來源:網(wǎng)絡(luò) 閱讀:770 作者:李伯億 欄目:數(shù)據(jù)庫

先提個問題:如何不重啟mysqld,且沒有權(quán)限修改用戶賬號和權(quán)限的情況下,如何重新設(shè)置root密碼?不知道沒關(guān)系,在此之前我也是不知道如何操作的,先看看下面的幾種重置root密碼的方法。

 

1、skip-grant-tables

我們常用的方法是使用skip-grant-tables選項(xiàng),mysqld server啟動之后并不使用權(quán)限系統(tǒng)(privilege system)。用戶不需要任何賬號、不受任何限制的訪問數(shù)據(jù)庫中所有數(shù)據(jù)。為了安全起見,通常加上skip-networking,mysqld不偵聽任何TCP/IP連接請求。操作過程如下,

1)修改my.cnf配置文件,在mysqld選項(xiàng)中添加skip-grant-tables和skip-networking。

2)再重啟mysqld server。

3)通過sql語句修改mysql.user表中存儲密碼。執(zhí)行flush privileges,重新啟用mysql權(quán)限系統(tǒng)。

update mysql.user set password=password('newpassword') where user='root';
flush privileges;

4)刪除或者注釋配置文件中skip-grant-tables和skip-networking的參數(shù)選項(xiàng)。如果使用skip-networking,則需要再次重啟mysqld。因?yàn)閟kip-networking不是系統(tǒng)變量,只是mysqld的參數(shù)選項(xiàng),而不能通過系統(tǒng)變量動態(tài)進(jìn)行設(shè)置。如果沒有適用skip-networking,只需要執(zhí)行flush privileges就可以使權(quán)限系統(tǒng)重新生效。

 

2. --init-file

mysqld_safe可以使–init-file參數(shù)選項(xiàng)來執(zhí)行重新設(shè)定密碼的sql語句。

1)新建一個初始化文件,如/tmp/initfile,文件內(nèi)容為上面修改密碼的sql語句。

update mysql.user set password=password('newpassword') where user='root';

flush privileges;

2)關(guān)閉mysqld服務(wù)進(jìn)程。

3)使用mysqld_safe啟動mysqld;

mysqld_safe --init-file=/tmp/initfile &

上面的兩種方法是在忘記root密碼情況下重新設(shè)置密碼的方法,可以發(fā)現(xiàn)都需要重啟mysqld服務(wù)。很多人都是使用第一種進(jìn)行重置root密碼,但是比較推薦的做法反而是第二種,即安全有快捷簡單。

 

3、不重啟mysqld的方法

1)首先得有一個可以擁有修改權(quán)限的mysql數(shù)據(jù)庫賬號,當(dāng)前的mysql實(shí)例賬號(較低權(quán)限的賬號,比如可以修改test數(shù)據(jù)庫)或者其他相同版本實(shí)例的賬號。把data/mysql目錄下面的user表相關(guān)的文件復(fù)制到data/test目錄下面。

mv mysql/user.* test/
chown mysql:mysql test/user.*

2)使用另一個較低權(quán)限的賬號鏈接數(shù)據(jù)庫,設(shè)置test數(shù)據(jù)庫中的user存儲的密碼數(shù)據(jù)。

[root@xiaoya test]# mysql -utest -ptest
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.6.31-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, 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.
(product)test@localhost [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| test               |
+--------------------+
2 rows in set (0.00 sec)
(product)test@localhost [(none)]> update test.user set password=password(123456) where user='root';
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id:    6
Current database: *** NONE ***
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0
(product)test@localhost [(none)]> select user,host from test.user;
+------+-----------+
| user | host      |
+------+-----------+
| root | localhost |
| test | localhost |
+------+-----------+
2 rows in set (0.00 sec)
(product)test@localhost [(none)]> quit
Bye

3)把修改后的user.MYD和user.MYI復(fù)制到mysql目錄下,記得備份之前的文件。

mv test/user.* ../mysql/
chown mysql:mysql test/user.*

4、查找mysql進(jìn)程號,并且發(fā)送SIGHUP信號,重新加載權(quán)限表。

[root@xiaoya mysql]# pgrep -n mysql

19764

[root@xiaoya mysql]# kill -SIGHUP 19764

5.登陸測試

[root@xiaoya mysql]# mysql -uroot -p123456
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.6.31-log MySQL Community Server (GPL)
Copyright (c) 2000, 2016, 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.
(product)root@localhost [(none)]> quit
Bye

向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)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI