91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

MySQL誤刪root用戶怎么恢復

發布時間:2021-08-26 17:22:28 來源:億速云 閱讀:215 作者:chen 欄目:MySQL數據庫

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


一個朋友在領導要求他刪除root@127.0.0.1,root@'%'等用戶,只保留root@localhost時,
他寫了一條類似delete from mysql.user where user='root'的命令……
注意,他并沒有寫 “and host=”的條件,導致悲劇發生,并且還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表,已經沒有了誤刪的root用戶,只剩下xxx@'ip1',yyy@'ip2',這樣的業務用戶:

  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環境,關閉以skip-grant-tables方式啟動的mysqld:
此時已經可以用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



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

  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用戶怎么恢復”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大荔县| 乌拉特后旗| 兴业县| 布尔津县| 泸定县| 阳新县| 淮安市| 博罗县| 水富县| 安国市| 北安市| 凉城县| 锡林浩特市| 凌源市| 龙江县| 临漳县| 日喀则市| 新竹县| 宣恩县| 大田县| 丹东市| 弥渡县| 辉南县| 金平| 上虞市| 陇川县| 出国| 邹城市| 秦皇岛市| 沙洋县| 福海县| 侯马市| 巢湖市| 广东省| 古浪县| 九龙城区| 顺义区| 故城县| 湾仔区| 安康市| 云梦县|