Windows MySQL 忘记密码(重置)

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值