「Mysql」mysql8.0版本以上修改密码

mysql -u root
use mysql; 
update user set authentication_string='' where user='root';
ALTER user 'root'@'localhost' IDENTIFIED BY '#Password123'; // 密码必须大于8位数, 大小写加特殊符号

你可能感兴趣的:(「Mysql」mysql8.0版本以上修改密码)