개발/Database
[Mysql 5.7] ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
Reimu.
2017. 7. 31. 10:26
반응형
패스워드를 강제로 초기화 한 후, 아래와 같은 에러가 발생하며, 아무런 쿼리가 날라가지 않는 경우가 있다.
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
이런 경우, 아래 명령어로 해결이 가능함.
mysql> set password = PASSWORD('강제로 변경한 패스워드');
반응형