关闭mysql服务
service mysqld stop
使用skip-grant-tables
参数启动mysql服务
mysqld --user=mysql --skip-grant-tables &
为root用户重置密码
输入mysql
进入mysql命令行界面:
重置密码:
update mysql.user set authentication_string = password('new_password') where user = 'root';
flush privileges;
注意:
new_password
代表root用户的新密码, 需要根据自己实际情况来替换
杀死mysql服务进程
kill -9 `pidof mysqld`
开启mysql服务并用新密码登录mysql
开启mysql服务:
service mysqld start