티스토리 뷰
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
mysql> UPDATE user set authentication_string=password('mypassword') where user='root';
을 사용하여 비밀번호를 변경하려 하였는데 ERROR 1819가 발생하였다.
비밀번호 정책에 적합하지 않은 비밀번호라 해당 에러가 발생한다.
정책 확인 : mysql> show variables like 'validate_password%';
+--------------------------------------+--------+
| Variable_name | Value |
+--------------------------------------+--------+
| 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 |
+--------------------------------------+--------+
7 rows in set (0.01 sec)
해결하기 위한 방법은 세 가지이다.
1. validate_password.policy 을 LOW로 변경.
2. validate_password 설정 플러그인 제거 후 다시 설정
3. 안전모드로 password 수정 후 로그인
- Total
- Today
- Yesterday
- 알고리즘
- dumps
- flask
- python #leetcode #set
- python #leetcode #algorithm
- MySQL
- leetcode #python #알고리즘
- Tistory
- python #프로그래머스 #완전탐색
- python #프로그래머스 #알고리즘
- 파이썬
- centOS7
- 프로그래머스
- notion
- 정렬
- 선택정렬
- Python
- 스프링 #시큐리티 #에러
- C++
- bfs #백준 #2606 #python
- 프로그래머스 #heap #힙 #heapq #python
- map
- 에러로그
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |