以管理员的身份打开cmd   

停止mysql服务

net stop mysql

跳过密码直接登录mysql

mysqld --skip-grant-tables

 

另外打开一个管理员身份的cmd窗口

登录mysql

mysql -u root

使用update语句修改user表中的密码

update mysql.user set authentication_string=PASSWORD("123456") where user="root" and host="localhost";

刷新表让密码生效

flush privileges;

 

posted on 2022-06-16 14:55  我叫福禄娃  阅读(73)  评论(0编辑  收藏  举报