MySQL重置密码

1:停止服务

net stop mysql

2:设置密码为空

mysqld --user=mysql --skip-grant-tables --skip-networking&

3:开启服务

net start mysql 

4:登录

mysql -u root mysql 

5:修改密码

mysql> update user set authentication_string=password('123456') where user='root
' and host='root' or host='localhost';

6:重启服务。然后再登录就可以了。

 

posted @ 2020-02-12 16:01  陆伟  阅读(129)  评论(0编辑  收藏  举报