测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
MySQL----MySQL数据库忘记root用户登录密码的解决办法
收藏本文
作者:redrose2100 类别: 日期:2022-05-29 08:38:13 阅读:1040 次 消耗积分:0 分
[TOC] ### 1 停止mysql服务 linux上通过如下命令停止mysql服务 ```bash systemctl stop mysqld ``` Windows通过【计算机】-右键-【管理】-【服务和应用程序】-【服务】,然后找到【MySQL5.7】,在上面右键-停止即可 ![](http://blog.redrose2100.com/static/upload/20220529_030724.png) ### 2 修改配置跳过认证 编辑配置文件,windows系统为my.ini,linux系统为my.cnf,然后在mysqld下面增加如下内容 ```bash [mysqld] skip-grant-tables ``` ### 3 启动mysql服务 linux系统执行如下命令 ```bash systemctl start mysqld ``` Windows通过【计算机】-右键-【管理】-【服务和应用程序】-【服务】,然后找到【MySQL5.7】,在上面右键-启动即可 ![](http://blog.redrose2100.com/static/upload/20220529_030724.png) ### 4 使用空密码登录root用户 此时使用root用户登录不需要密码了,如下 ```bash C:\Users\Administrator>mysql -uroot -P13306 Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.37-log MySQL Community Server (GPL) Copyright (c) 2000, 2022, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> ``` ### 4 重置root新密码 ```bash use mysql; update user set authentication_string=password('新密码') where user='root'; flush privileges; ``` 如下: ```bash mysql> use mysql; Database changed mysql> update user set authentication_string=password("xxxxxxxxx") where user='root'; Query OK, 1 row affected, 1 warning (0.00 sec) Rows matched: 1 Changed: 1 Warnings: 1 mysql> flush privileges; Query OK, 0 rows affected (0.01 sec) mysql ``` ### 5 参照步骤1再次停止mysql服务 ### 6 修改pei配置文件,将步骤2中配置的skip-grant-tables去掉 ### 7 参照步骤3再次启动mysql服务 ### 8 使用重置后密码登录 如下,使用新密码已经可以正常登录root用户了 ```bash C:\Users\Administrator>mysql -uroot -P13306 -p Enter password: *********** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.37-log MySQL Community Server (GPL) Copyright (c) 2000, 2022, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/313
上一篇:
MySQL----MySQL数据库插入中文报错或者乱码问题的解决办法
下一篇:
Django(1)快速体验
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件