MySQL忘记root密码怎么办

首先开启mysql服务的时候使用特殊模式开启

mysqld-nt --skip-grant-tables 

启动完毕后,我们使用root链接,但是不用输入密码,使用空密码的方式登录MySQL

mysql -uroot -p

然后我们直接重置root的密码为123

update mysql.user set password=PASSWORD('123') where User='root'; 


更改后,我们查看一下

 select host,password,user from mysql.user;


然后我们刷新权限表 

 flush privileges; 


然后我们先关闭mysql服务器

mysqladmin -uroot -p123456 shutdown

重新以正常模式启动mysql服务器即可

mysqld -uroot

好了,服务器启动完成,赶快试试看看我们能否用root登陆

mysql -uroot -p123

ok,大功告成。

原文:http://blog.csdn.net/hongchangfirst/article/details/16891295

作者:hongchangfirst

hongchangfirst的主页:http://blog.csdn.net/hongchangfirst



你可能感兴趣的:(MySQL忘记root密码怎么办)