net stop mysql
mysqld --skip-grant-tables
来跳过密码登录,需要在窗口中输入mysqld -console --skip-grant-tables --shared-memory
来跳过权限验证(第一个窗口中),输入后没有任何反应net stop mysql
接着输入mysqld --console --skip-grant-tables --shared-memory
mysql -u root -p
,此时会让输入密码,直接回车就能连接到mysql了use mysql; (使用mysql数据表) update user set authentication_string='' where user='root';(将密码置为空) quit; (退出Mysql)
net stop mysql(关闭mysql服务,虽然会显示没有开启服务,但是以防万一) net start mysql(再打开mysql服务) cd 进入bin目录 mysql -u root -p (此处会显示输入密码,直接回车就好了,前面已经将他置为空了) ALTER USER 'root'@'localhost' IDENTIFIED BY 'root';(更改密码)
转自: https://blog.csdn.net/m0_46278037/article/details/113923726