Data Science/SQL (2) 썸네일형 리스트형 ERROR 1819 (HY000): Your password does not satisfy the current policy requirements MySQL에 유저를 등록할 때 password가 현재 정책에 맞지 않다는 오류가 발생했다. mysql> create user test@**.**.**.*** identified by 'password'; ERROR 1819 (HY000): Your password does not satisfy the current policy requirements 현재 비밀번호 정책이 어떻게 되어있는지 확인해보니 validate_password.policy 가 MEDIUM으로 설정되어 있었다. 정책을 LOW로 변경해주고, mysql> set global validate_password.policy=LOW; 다시 user 생성하면 성공 mysql> create user test@ **.**.**.*** identifie.. MySql 외부 접속 사용자 추가 mysql> create user test@**.**.***.** identified by 'password' ; Query OK, 0 rows affected (0.02 sec) 권한 부여 mysql> grant all privileges on *.* to test@**.**.***.**; Query OK, 0 rows affected (0.00 sec) 적용 mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) 확인 mysql> select Host, User From mysql.user; +--------------+------------------+ | Host | User | +--------------+------------.. 이전 1 다음