首页 > 代码库 > 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数据库服务。
再登录数据库即可。
本文出自 “敬管叔鲜” 博客,谢绝转载!
centos 7 + mysql 5.7.13 重置数据库的root密码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。