[MySQL] unblock with 'mysqladmin flush-hosts' 에러
- 01-01
- 53,500 회
- 0 건
오류 : ERROR 1129 (HY000): Host 'xxx.xxx.xxx.xxx' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
원인 : 원격 서버로 단순 접속 및 종료를 한 경우 비정상적인 접속으로 판단 카운팅을 하며 global max_connect_errors 에 지정된 값을 초과시 해당 IP 를 차단시킵니다.
[code]
-- max_connect_errors 카운트 확인
select @@global.max_connect_errors;
-- max_connections 카운트 확인
select @@global.max_connections;
-- 에러 카운트 초기화
flush hosts;
-- max_connections 변경
set global max_connections=500;
-- max_connect_errors 변경
set global max_connect_errors=99999999;
[/code]