본문 바로가기
잡동/MYSQL

Your password does net satisfy the current policy requirements

by 죠부니 2021. 5. 7.
반응형

Your password does net satisfy the current policy requirements

show variables like 'validate_password%'
validate_password.check_user_name	ON
validate_password.dictionary_file	
validate_password.length	8
validate_password.mixed_case_count	1
validate_password.number_count	1
validate_password.policy	MEDIUM
validate_password.special_char_count	1

policy가 MEDIUM으로 되어있는것을 확인할수 있다.

set global validate_password.policy=LOW;

변경후 진행

반응형