centos 忘记MySQL密码的恢复方法

centos 忘记MySQL密码的恢复方法

以下在centos测试通过。

1. 停止mysqld服务;

/etc/init.d/mysql stop

2. 用以下命令启动MySQL,以不检查权限的方式启动;

cd /usr/local/mysql/bin

./mysqld_safe --skip-grant-tables &

或者

mysqld --skip-grant-tables &

3. 用空密码方式使用root用户登录 MySQL;

./mysql -uroot -p

4. 修改root用户的密码;

update mysql.user set password=PASSWORD('newpass') where User='root';

flush privileges;

quit

重新启动MySQL

/etc/init.d/mysql restart