본문 바로가기

etc

mysqli_query(): (HY000/1819): Your password does not satisfy the current policy requirements 에러 해결방법 error solution

Q.how to solve? 

mysqli_query(): (HY000/1819): Your password does not satisfy the current policy requirements error solution

 

phpmyadmin에서 사용자를 추가할시 생기는 에러,오류입니다. 비번설정에서 오류가 있다라는 문구입니다.

 

저도 해결방법을 찾으려 온갖 노력과 시간을 쏟아 부었답니다..

 

 

 

오류 메세지

mysql> show variables like 'validate_password%';

 

입력시 validate_password_policy 부분이 MEDIUM으로 되어있습니다.

이것을 LOW로 바꿔주면됩니다.

 

mysql> SET GLOBAL validate_password_policy=Low;

 

이상입니다.

-----------------------------------------------------------------------------------------------------

mysqli_query(): (HY000/1819): Your password does not satisfy the current policy requirements