centos 7 + mysql 5.7.13 重置数据库的root密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 [email protected]‘%‘ identified by ‘redhat‘; (授权,不然navicat等无法登录数据库)。
# vi /etc/my.cnf # [mysqld]下skip-grant-tables 内容前去掉#
#systemctl status mysql.service 重启mysql数据库服务。
再登录数据库即可。
本文出自 “敬管叔鲜” 博客,谢绝转载!
以上是关于centos 7 + mysql 5.7.13 重置数据库的root密码的主要内容,如果未能解决你的问题,请参考以下文章
Centos 6.5 下面 源码编译 安装 Mysql 5.7.13