真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MySQL誤刪root用戶怎么恢復

本篇內(nèi)容介紹了“MySQL誤刪root用戶怎么恢復”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

成都創(chuàng)新互聯(lián)公司主營晉州網(wǎng)站建設的網(wǎng)絡公司,主營網(wǎng)站建設方案,重慶APP軟件開發(fā),晉州h5成都微信小程序搭建,晉州網(wǎng)站營銷推廣歡迎晉州等地區(qū)企業(yè)咨詢


一個朋友在領導要求他刪除root@127.0.0.1,root@'%'等用戶,只保留root@localhost時,
他寫了一條類似delete from mysql.user where user='root'的命令……
注意,他并沒有寫 “and host=”的條件,導致悲劇發(fā)生,并且還flush了授權。

以下模擬誤刪操作,嘗試做恢復:

MySQL版本:
MySQL 5.5.49

模擬誤刪操作:

  1. mysql> DELETE FROM mysql.user WHERE user='root';

  2. Query OK, 1 row affected (0.01 sec)

  3. mysql> FLUSH PRIVILEGES;

  4. Query OK, 0 rows affected (0.01 sec)


解決思路:
新安裝或者初始化一個新的實例(與誤刪操作的MySQL版本最好一致)
初始化好后,啟動實例,并以root@localhost用戶登錄,然后設置密碼:

新實例上:

  1. mysql> SELECT current_user();

  2. +----------------+

  3. | current_user() |

  4. +----------------+

  5. | root@localhost |

  6. +----------------+

  7. 1 row in set (0.00 sec)

  8. mysql> SET PASSWORD=password('123456');

  9. Query OK, 0 rows affected (0.00 sec)

  10. mysql> FLUSH PRIVILEGES;

  11. Query OK, 0 rows affected (0.00 sec)



將存放在mysql.user里的root@localhost用戶信息查詢出:

  1. mysql> SELECT * FROM mysql.user WHERE user='root' AND host='localhost' INTO OUTFILE '/tmp/root.txt';

  2. Query OK, 1 row affected (0.00 sec)



對于誤刪操作的實例:
首先將之前查詢出的/tmp/root.txt文件傳到該機上,此處傳到同目錄下,操作略。

然后要停掉mysqld,并繞過授權表啟動:
可能無法通過mysqladmin shutdown來停止,此處直接kill掉mysqld_safe與mysqld,操作略。

然后啟動:

  1. [root@vm02 ~]# mysqld_safe --skip-grant-tables &

  2. [1] 2957

  3. [root@vm02 ~]# 160819 17:00:30 mysqld_safe Logging to '/data/mysql_log/err-log.err'.

  4. 160819 17:00:30 mysqld_safe Starting mysqld daemon with databases from /data/mysql


進入mysql:

  1. [root@vm02 ~]# mysql

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

  3. Your MySQL connection id is 3

  4. Server version: 5.5.49-log MySQL Community Server (GPL)

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

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

  7. affiliates. Other names may be trademarks of their respective

  8. owners.

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

  10. mysql> SELECT user(),current_user();

  11. +--------+----------------+

  12. | user() | current_user()  |

  13. +--------+----------------+

  14. | root@  | @               |

  15. +--------+----------------+

  16. 1 row in set (0.00 sec)


可以查看一下mysql.user表,已經(jīng)沒有了誤刪的root用戶,只剩下xxx@'ip1',yyy@'ip2',這樣的業(yè)務用戶:

  1. mysql> SELECT user,host FROM mysql.user;

  2. +------+---------------+

  3. | user  | host          |

  4. +------+---------------+

  5. | xxx  | 192.168.1.185 |

  6. | yyy  | 192.168.1.187 |

  7. +------+---------------+

  8. 2 rows in set (0.00 sec)


將之前的新實例的mysql.user表中的root@localhost信息導入mysql.user:

  1. mysql> LOAD DATA INFILE '/tmp/root.txt' INTO TABLE mysql.user;

  2. Query OK, 1 row affected (0.04 sec)

  3. Records: 1 Deleted: 0 Skipped: 0 Warnings: 0

  4. mysql> FLUSH PRIVILEGES;

  5. Query OK, 0 rows affected (0.00 sec)

  6. mysql> SELECT user,host FROM mysql.user WHERE user='root' AND host='localhost';

  7. +------+---------------+

  8. | user | host          |

  9. +------+---------------+

  10. | root | localhost     |

  11. +------+---------------+

  12. 1 rows in set (0.00 sec)


退出到shell環(huán)境,關閉以skip-grant-tables方式啟動的mysqld:
此時已經(jīng)可以用mysqladmin來關閉mysqld了:

  1. [root@vm02 tmp]# mysqladmin -uroot -p123456 shutdown

  2. 160819 17:08:08 mysqld_safe mysqld from pid file /data/mysql/mysql-pid ended

  3. [1]+  Done                    mysqld_safe --skip-grant-tables  (wd: ~)

  4. (wd now: /tmp)

  5. [root@vm02 tmp]# ps -ef|grep mysql

  6. root       3938   1973  0 17:08 pts/0    00:00:00 grep mysql


再重新啟動mysqld:

  1. [root@vm02 tmp]# mysqld_safe &

  2. [1] 3939

  3. [root@vm02 tmp]# 160819 17:08:53 mysqld_safe Logging to '/data/mysql_log/err-log.err'.

  4. 160819 17:08:53 mysqld_safe Starting mysqld daemon with databases from /data/mysql



已經(jīng)可以正常使用了,密碼是之前在初始化的新實例設置的:

  1. [root@vm02 tmp]# mysql -uroot -p123456

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

  3. Your MySQL connection id is 2

  4. Server version: 5.5.49-log MySQL Community Server (GPL)

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

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

  7. affiliates. Other names may be trademarks of their respective

  8. owners.

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

  10. mysql> SELECT user(),current_user();

  11. +----------------+----------------+

  12. | user()            | current_user()  |

  13. +----------------+----------------+

  14. | root@localhost | root@localhost  |

  15. +----------------+----------------+

  16. 1 row in set (0.00 sec)



查看一下權限,可以對比一下,與之前的無異:

  1. mysql> SHOW GRANTS;

  2. +----------------------------------------------------------------------------------------------------------------------------------------+

  3. | Grants for root@localhost                                                                                                              |

  4. +----------------------------------------------------------------------------------------------------------------------------------------+

  5. | GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD '*6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9' WITH GRANT OPTION |

  6. | GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION                                                                           |

  7. +----------------------------------------------------------------------------------------------------------------------------------------+

  8. 2 rows in set (0.00 sec)

“MySQL誤刪root用戶怎么恢復”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!


當前文章:MySQL誤刪root用戶怎么恢復
本文來源:http://weahome.cn/article/jcdhde.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部