MySQL8.0.19重置密码

重置MySQL密码
  1. 首先进入安全模式
    在MySQL8中执行mysqld --skip-grant-tables已经无效了,所以执行这一句
    mysqld --console --skip-grant-tables --shared-memory
    

在这里插入图片描述
执行后这个窗体不要关,一直开着,打开另一个CMD命令窗口,管理员运行

  1. 开启上面那个免密码服务,在新窗口免密码进入系统,直接输入mysql进入系统

  2. 回车后输入show databases;如果看到所有数据库则说明登录成功
    在这里插入图片描述

  3. 然后进入mysql数据库中,这里是存放用户的地方
    在这里插入图片描述

  4. 然后输入show tables;查看所有表,会发现有个user表,这里存放的就是用户名,密码,权限等等账户信息
    在这里插入图片描述

  5. 知道用户信息的存储位置后,用SQL查询语句查看用户的具体信息
    在这里插入图片描述

  6. 将密码设置为空

    UPDATE mysql.user SET authentication_string='' WHERE user='root' and host='localhost';
    
  7. 退出mysql系统,关闭窗口,关闭服务
    在这里插入图片描述

  8. 开启新窗口,按照下面流程
    在这里插入图片描述

    C:\WINDOWS\system32>cd C:\Moon\Major\Environment\MySQL\bin
    
    C:\Moon\Major\Environment\MySQL\bin>net start mysql
    MySQL 服务正在启动 .
    MySQL 服务已经启动成功。
    
    C:\Moon\Major\Environment\MySQL\bin>mysql -u root -p
    Enter password:
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 8
    Server version: 8.0.19
    
    Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
    
    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> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';  ### 新密码
    Query OK, 0 rows affected (0.02 sec)
    
    mysql> quit
    Bye
    
  9. 密码更新完成后再登录验证,成功啦
    在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值