1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > ERROR 1820: You must reset your password using ALTER USER statement before executing this statement

ERROR 1820: You must reset your password using ALTER USER statement before executing this statement

时间:2022-08-24 17:57:38

相关推荐

ERROR 1820: You must reset your password using ALTER USER statement before executing this statement

You must reset your password报错

mysql连接成功之后,执行sql报错ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.需要修改初始化密码如果修改的密码不符合密码策略会报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements默认密码策略(长度,字符,数字要求)修改密码策略

mysql连接成功之后,执行sql报错ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

需要修改初始化密码

#连接mysql并输入密码mysql -u root -p#修改初始化密码ALTER USER USER() IDENTIFIED BY 'TESTtest1234.';

如果修改的密码不符合密码策略会报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

默认密码策略(长度,字符,数字要求)

修改密码策略

#连接mysql并输入密码mysql -u root -p#设置密码策略set global validate_password_policy=0;set global validate_password_length=1;

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。