MySQL的root密码找回

1 . 查找my.conf位置

  1. [root@iZ28t57xzbcZ ~]# whereis my.cnf
  2. my: /etc/my.cnf

2 . 修改my.conf文件,新增skip-grant-tables

  1. [mysqld]
  2. port = 3306
  3. socket = /tmp/mysql.sock
  4. skip-grant-tables

3 . 重启mysql

  1. systemctl restart mariadb

4 . 登陆修改root密码

  1. [root@localhost log]# mysql
  2. Welcome to the MySQL monitor. Commands end with ; or \g.
  3. Your MySQL connection id is 2
  4. Server version: 5.5.23-log Source distribution
  5. Copyright (c) 2000, 2011, 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> use mysql
  11. Database changed
  12. mysql> update user set password = password('root') where user = 'root';
  13. Query OK, 4 rows affected (0.91 sec)
  14. Rows matched: 4 Changed: 4 Warnings: 0
  15. mysql> flush privileges;
  16. Query OK, 0 rows affected (0.03 sec)
  17. mysql> quit
  18. Bye

5 . 删除之前my.conf文件中新增的skip-grant-tables

6 . 重启DB,登陆正常

7 . 参数skip-grant-tables说明
这个参数看名字就是skip权限用的,通常用来找回root密码用,相对危险,慎用,特别是在生产上

参考:
https://my.oschina.net/Kenyon/blog/87632