「Mysql」mysql8.0版本以上修改密码
2019-05-16 本文已影响0人
acsamson
mysql -u root
use mysql;
update user set authentication_string='' where user='root';
ALTER user 'root'@'localhost' IDENTIFIED BY '#Password123'; // 密码必须大于8位数, 大小写加特殊符号
mysql -u root
use mysql;
update user set authentication_string='' where user='root';
ALTER user 'root'@'localhost' IDENTIFIED BY '#Password123'; // 密码必须大于8位数, 大小写加特殊符号