1.首先停止MySQLnet stop mysql
2.跳过权限检查启动mysql, 进入mysql的bin目录下,运行:
mysqld --defaults-file="mysql安装目录\my.ini" --console --skip-grant-tables
3.重新打开一个CMD窗口,连接mysql: mysql -uroot -p
4.查看原来的密码,执行mysql语句:select host,user,password from mysql.user;
5. 修改密码,执行mysql语句:update mysql.user set password=‘新密码’ where user=‘root’;
6. 刷新权限后退出:flush privileges;
exit;
7. 重新启动mysql服务:net start mysql;