一、在服务中关闭MYSQL
二、以管理员权限打开cmd,切换到mysql安装的bin路径,如:C:\Program Files\MySQL\MySQL Server 5.7\bin
三、以不检查权限的方式启动:mysqld -nt --skip-grant-tables
四、重新用管理员权限打开一个cmd窗口,用空密码方式使用root用户登录 MySQL:mysql -u root
五、输入命令更改root账户的密码为 root:
1、高级版本没有password字段,为authentication_string:update mysql.user set authentication_string=password('root') where user='root' ;
2、老版本有password字段:update mysql.user set password=password('root') where User='root';
六、输入命令:flush privileges;
七、输入命令:quit ;
再次登录就可以了(还不行的话重启计算机登录)!