一共分为一下几步:
1、停止服务;net stop mysql
2、编辑my.ini; 在mysqld里增加skip-grant-tables
3、重启服务;
4、连接mysql;mysql -uroot -p 回车 此时是不需要密码的
5、use mysql;
6、修改密码;update mysql.user set authentication_string=password('123456') where user='root' and Host = 'localhost';
7、刷新权限;flush privileges;
8、my.ini中删除刚刚添加的那行;
9、重启服务;net start mysql
搞定