第一步,先停止mysqld
systemctl stop mysqld
第二步,编辑mysqld 配置文件
vim /etc/my.cnf
在文件最后添加一行 skip-grant-tables 保存
第三步,重启mysqld ,进入mysqld 修改密码
mysql -u root -p
直接按回,免密登录。更新密码
update user set authentication_string=password('123456') where user='root' and host='localhost';
第四步,删除 配置文件的 skip-grant-tables 配置。
评论