MySQL5.7 忘记root密码,怎么破?

Posted wshenJin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL5.7 忘记root密码,怎么破?相关的知识,希望对你有一定的参考价值。

mysql5.7 忘记root密码,怎么破?

关服

# kill -0 $mysql_pid
# kill $mysql_pid

免密启动

# /usr/local/mysql57/bin/mysqld_safe --defaults-file=/etc/my.cnf --skip-grant-tables &
[1] 16688
2017-12-08T10:32:24.764472Z mysqld_safe Logging to ‘/data/database/mysql/host-30-0-0-196.err‘.
2017-12-08T10:32:24.901997Z mysqld_safe Starting mysqld daemon with databases from /data/database/mysql

改密码呀

# /usr/local/mysql57/bin/mysql -S /tmp/mysql.sock 
mysql> update mysql.user set authentication_string=password(‘4a68a3c809c38e31‘) where user=‘root‘ ; 
Query OK, 1 row affected, 1 warning (0.01 sec)
Rows matched: 1  Changed: 1  Warnings: 1

mysql> quit
Bye

重启

# /usr/local/mysql57/bin/mysqladmin -S /tmp/mysql3308.sock shutdown  
2017-12-08T10:33:02.360399Z mysqld_safe mysqld from pid file /data/database/mysql/host-30-0-0-196.pid ended
[1]+  Done                  阿/usr/local/mysql57/bin/mysqld_safe --defaults-file=/etc/my.cnf --skip-grant-tables

# /usr/local/mysql57/bin/mysqld_safe --defaults-file=/etc/my.cnf

还得再改一次

You must reset your password using ALTER USER statement before executing this statement.
mysql> alter user [email protected] identified by ‘4a68a3c809c38e31‘;
Query OK, 0 rows affected (0.01 sec)

可以了

以上是关于MySQL5.7 忘记root密码,怎么破?的主要内容,如果未能解决你的问题,请参考以下文章

Mysql5.7忘记root密码及mysql5.7修改root密码的方法

mysql5.7忘记密码时,修改root密码

Mysql5.7忘记root密码及mysql5.7修改root密码的方法

mysql5.7忘记root密码

mysql5.7忘记root密码修改

mysql5.7中root密码忘记后修改密码