Linux 下mysql忘记root密码解决方法

时间:2021-11-28 10:50:17

忘记root密码怎么办:
1.关闭数据库
2.使用-->mysqld_safe --skip-grant-tables &--<启动数据库
3.使用空密码进入数据库(mysql命令后直接回车)
4.使用update语句修改root密码,然后刷新权限表
5.关闭数据库并重新以正常方式启动数据库
操作步骤如下:
#service mysql stop
#mysqld_safe --skip-grant-tables &
#service mysql start
#mysql
mysql> update mysql.user set Password=password('new_password') where User='root';
mysql> flush privileges;
mysql> quit
#service mysql restart