1、首先打开管理员模式windows终端(右击开始菜单=>“windows终端(管理员)”)

2、登录mysql

3、修改密码
alter user 'root'@'localhost' identified by '新密码' password expire never;
alter user 'root'@'localhost' identified with mysql_native_password by '新密码';


4、刷新权限
flush privileges;

5、退出mysql,重新使用新密码登录

Over!