Your password does not satisfy the current policy requirements

//Your password does not satisfy the current policy requirements

Your password does not satisfy the current policy requirements

Mysql 5.7  패스워드 정책변경
mysql이  버전업 되면서 패스워드 정책이 새롭게 변경되었다

 

show variables like ‘validate_password%’;

UPDATE user SET authentication_string=PASSWORD(‘Password123!@#’) WHERE User = ‘root’;
암호 복잡성정책 으로 인해 대소문자 특수문자가 들어가야 적용됨

my.cnf 파일에 패스워드 정책 등급을 낮추는 방법도 있음
my.cnf 파일 수정
vi /etc/my.cnf

[mysqld]
#Password Policy
validate_password_policy=LOW
#validate_password_policy=MEDIUM

By |2019-08-12T16:53:48+00:005월 31st, 2019|Categories: linux|Tags: |0 Comments

About the Author: