Mysql找回root密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql找回root密码相关的知识,希望对你有一定的参考价值。
1.关闭数据库
# killall mysqld
2.使用--skip-grant-tables启动mysql,忽略授权登录验证。
# mysqld_safe --skip-grant-tables --user=mysql &
3.登入数据库
# mysql
4.修改密码
mysql> update mysql.user set password=password("123456") where user=‘root‘ and host=‘localhost‘; mysql> flush privileges; Query OK, 0 rows affected (0.00 sec)
5.重启数据库
以上是关于Mysql找回root密码的主要内容,如果未能解决你的问题,请参考以下文章