centos 7 + mysql 5.7.13 重置数据库的root密码

前端之家收集整理的这篇文章主要介绍了centos 7 + mysql 5.7.13 重置数据库的root密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的CentOS相关文章