重置MySQL密码
- 首先进入安全模式
在MySQL8中执行mysqld --skip-grant-tables已经无效了,所以执行这一句mysqld --console --skip-grant-tables --shared-memory
执行后这个窗体不要关,一直开着,打开另一个CMD命令窗口,管理员运行
-
开启上面那个免密码服务,在新窗口免密码进入系统,直接输入mysql进入系统
-
回车后输入show databases;如果看到所有数据库则说明登录成功
-
然后进入mysql数据库中,这里是存放用户的地方
-
然后输入show tables;查看所有表,会发现有个user表,这里存放的就是用户名,密码,权限等等账户信息
-
知道用户信息的存储位置后,用SQL查询语句查看用户的具体信息
-
将密码设置为空
UPDATE mysql.user SET authentication_string='' WHERE user='root' and host='localhost';
-
退出mysql系统,关闭窗口,关闭服务
-
开启新窗口,按照下面流程
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
-
密码更新完成后再登录验证,成功啦