windows下mysql忘记root密码的解决方法

1、在DOS窗口下输入:

net stop mysql 


2、开一个DOS窗口,这个需要切换到mysql的bin目录,输入:

*/bin/mysqld-nt.exe
mysqld-nt --skip-grant-tables;
再开一个DOS窗口,输入:

mysql -u root 

4、继续输入: 

use mysql  
update user set password=password("new_pass") where user="root";  
flush privileges;  
exit  


5、使用任务管理器,找到mysqld-nt的进程,结束进程 


你可能感兴趣的:(windows下mysql忘记root密码的解决方法)