共计 707 个字符,预计需要花费 2 分钟才能阅读完成。
自动写代码机器人,免费开通
这篇文章给大家分享的是有关 mysql5.7 重置 root 密码的方法的内容。丸趣 TV 小编觉得挺实用的,因此分享给大家做个参考。一起跟随丸趣 TV 小编过来看看吧。
安装完 mysql5.7 后忘记了密码,需要重置 root 密码;
第一步:修改配置文件免密码登录 mysql
vim /etc/my.cnf
## 在 my.cnf 的 [mysqld] 字段加入
skip-grant-tables
## 重启 mysql 服务
service mysqld restart
第二步:免密码登录 mysql
mysql -u root
##password 直接回车
第三步:给 root 重置密码为空
mysql use mysql;
## mysql 5.7.9 以后废弃了 password 字段, 字段名修改为 authentication_string
mysql update user set authentication_string= where user= root
## 刷新数据库
mysql flush privileges;
第四步:root 重置密码
退出 mysql,删除 /etc/my.cnf 文件最后的 skip-grant-tables 重启 mysql 服务,使用 root 用户进行登录,因为上面设置了 authentication_string 为空,所以可以免密码登录。
alter user root @ localhost identified by #新密码 #
感谢各位的阅读!关于 mysql5.7 重置 root 密码的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到吧!
向 AI 问一下细节
丸趣 TV 网 – 提供最优质的资源集合!
正文完