service mysqld stop
mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
service mysqld start
mysql -uroot -p
mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql> FLUSH PRIVILEGES;
mysql> quit
service mysqld start
mysql -uroot -p
重置MySQL root密码
本文介绍了一种在忘记MySQL root密码后重新设置的方法。通过使用特定命令行参数启动mysqld服务并更新user表中root用户的密码。
1955

被折叠的 条评论
为什么被折叠?



