先关闭mysql服务
进入命令行提示符,定向到mysql的bin目录下,执行如下命令。
Mysqld-nt –skip-grant-tables (安装版有可能不同,需要在bin目录下找mysql-nt的程序)安全
模式启动mysql,以检查权限的方式启动
另开一个命令行提示符,执行如下命令。
Mysql –u root 无密码登录
Use mysql
Update user set password=password(“newpassword”) where user=’root’ ;
Flush privileges ;
Quit
开启mysql服务后,密码破解。