CentOS6.7下MySQL数据库忘记root密码解决方法

一、更改my.cnf配置文件

编辑/etc/my.cnf文件,在[mysqld]下添加skip-grant-tables,保存退出。如图:

CentOS6.7下MySQL数据库忘记root密码解决方法_第1张图片

重启mysql服务:services mysqld restart

或者mysql5.7版本

  1. 查看初始密码

grep 'temporary password' /var/log/mysqld.log 2016-07-08T02:25:46.311098Z 1 [Note] A temporary password is generated for root@localhost: MtPqF0/oN5zo 其中“MtPqF0/oN5zo”就为我们要找的初始密码



作者:超凡陆战队
链接:https://www.jianshu.com/p/0a40cbaa79a0
來源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

二、更改root密码

重启mysqld服务后,执行mysql命令,进入mysql命令行:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

[root@yeebian ~]# mysql

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

Your MySQL connection id is 2

Server version: 5.1.73 Source distribution

 

Copyright (c) 2000, 2013, 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.

 

mysql>

修改root密码

1

2

3

4

5

6

7

8

9

mysql> UPDATE mysql.user SET Password=PASSWORD('mysqladmin'where USER='root';

Query OK, 0 rows affected (0.00 sec)

Rows matched: 3  Changed: 0  Warnings: 0

 

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)

 

mysql> exit

Bye

三、删除/etc/my.cnf中的skip-grant-tables,或者注释掉,重启mysql即可。

你可能感兴趣的:(mysql)