# 停止 mysql 服务
# 修改 mysql 配置文件 /etc/my.cnf,添加如下信息
[mysqld]
skip-grant-tables
# 重新启动 mysql 服务
# 免密登录
mysql -uroot
use mysql;
update user set password = password(‘123456‘), authentication_string = password(‘123456‘) where user = ‘root‘;
flush privileges;
# 停止 mysql 服务后,还原 /etc/my.cnf 配置文件后重启服务后,使用新密码登录即可