标签:
在[mysqld]下加:skip-grant-tables
二、重启Mysql服务
net stop mysql
net start mysql
三、修改密码
SET PASSWORD FOR ‘root‘@‘localhost‘ = PASSWORD(‘newpass‘);
四、重新修改my.ini
删除skip-grant-tables
MySQL——重置密码
原文地址:http://www.cnblogs.com/bluewhy/p/5275214.html