mysql 5.7 에서 암호를 변경하고자 할때 ERROR 1819 (HY000): Your password does not satisfy the current policy requirements 라는 메세지가 뜬다는 것은 암호설정이 mysql에서 지정한 조건을 만족하지 않아서다. mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'aaaa'; ERROR 1819 (HY000): Your password does not satisfy the current policy requirements mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '1q2W3e$r%T'; Query OK, 0 rows affected (0.00 se..