centos 7 + MysqL 5.7.13重置root密码步骤:
# vi /etc/my.cnf # [MysqLd]下skip-grant-tables 内容前添加#
# MysqL -uroot -p 连续输入enter 进入
# use MysqL
# update MysqL.user set authentication_string=PASSWORD('redhat') where User='root';
# grant all privileges on *.* to root@'%' identified by 'redhat'; (授权,不然navicat等无法登录数据库)。
# vi /etc/my.cnf # [MysqLd]下skip-grant-tables 内容前去掉#
#systemctl status MysqL.service 重启MysqL数据库服务。
原文链接:https://www.f2er.com/centos/377154.html