码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-06-16 23:04:11      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:linux   centos7   系统   

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数据库服务。

        

        再登录数据库即可。


本文出自 “敬管叔鲜” 博客,谢绝转载!

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

标签:linux   centos7   系统   

原文地址:http://9285090.blog.51cto.com/9275090/1939126

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!