1、用管理员权限打开CMD窗口
2、找到你的MySQL安装路径
3、执行 net stop mysql57
4、在执行(窗口不要关闭)mysqld --defaults-file="C:\ProgramData\MySQL\MySQL Server 5.7\my.ini" --skip-grant-tables 命令
5、打开第二个cmd窗口执行 mysql -uroot -p 提示输入密码,直接回车(不用输入密码)
6、选择数据库:use mysql;
7、创建一个新的账号 grant all privileges on *.* to test@"%" identified by "123456" with grant option;
修改密码:update user set authentication_string=password('新密码') where user='root' and Host='localhost';
9、刷新权限:flush privileges;
附件my.ini
[mysql]
# 设置mysql客户端默认字符集
default-character-set=utf8
[mysqld]
#设置3306端口
port = 3306
# 设置mysql的安装目录
basedir=
# 允许最大连接数
max_connections=200
# 服务端使用的字符集默认为8比特编码的latin1字符集
character-set-server=utf8
# 创建新表时将使用的默认存储引擎
## 忘记密码后停止服务并取消下行注释后重启服务,以root用户进入即可,具体操作
# step 1. net stop mysql
# step 2. edit this file
# step 3. net start mysql
# step 4. mysql -u root (not -p)
# step 5. use mysql (in mysql shell)
# step 6. update user set authentication_string = password('newpassword'),password_last_changed=now() where user='root';
# step 7. 注释本文件内容并重启mysql
#
#
skip-grant-tables