MySQL8.0.19重置密码

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

MySQL8.0.19重置密码_第1张图片
执行后这个窗体不要关,一直开着,打开另一个CMD命令窗口,管理员运行

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

  2. 回车后输入show databases;如果看到所有数据库则说明登录成功
    MySQL8.0.19重置密码_第2张图片

  3. 然后进入mysql数据库中,这里是存放用户的地方
    MySQL8.0.19重置密码_第3张图片

  4. 然后输入show tables;查看所有表,会发现有个user表,这里存放的就是用户名,密码,权限等等账户信息
    MySQL8.0.19重置密码_第4张图片

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

  6. 将密码设置为空

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

  8. 开启新窗口,按照下面流程
    MySQL8.0.19重置密码_第5张图片

    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. 密码更新完成后再登录验证,成功啦
    MySQL8.0.19重置密码_第6张图片

你可能感兴趣的:(MySQL8.0.19重置密码)