elasticsearch 시작 FAQ 요약

1186 단어 ElasticSearch

1. max file descriptors [4096] for elasticsearch process is too low, increase to atleast [65536]


프로세스당 최대 동시 열기 파일 수가 너무 작아서 다음 명령을 사용하여 볼 수 있습니다
ulimit -Hn
ulimit -Sn

해결 방법:
/etc/security/limits를 수정합니다.conf 파일, 끝에 다음과 같은 두 줄을 추가합니다
*               soft    nofile          65536
*               hard    nofile          65536

사용자가 다시 로그인하도록 전환한 후 구성 수정이 적용됩니다.

2. max number of threads[1868] for user [es] is too low, increase to atleast [4096]


아래 명령을 사용하면 내 환경은 1868, 4096으로 바뀌어야 한다. 명령을 보면 다음과 같다.
ulimit -Hu
ulimit -Su

해결 방법:
/etc/security/limits를 수정합니다.conf 파일, 끝에 다음과 같은 두 줄을 추가합니다
*               soft    nproc           4096
*               hard    nproc           4096

마찬가지로,
사용자가 다시 로그인하도록 전환한 후 구성 수정이 적용됩니다.

3. max 가상 메모리 영역 vm.max_map_count [65530] is too low, increase to at least [262144]


수정/etc/sysctl.conf 파일
vi /etc/sysctl.conf

끝에 줄 추가하기 (이미 존재하는 경우 수치 수정)
vm.max_map_count=262144

수정 사항 적용
sysctl -p

좋은 웹페이지 즐겨찾기