1. 문제
centos7에 elasticsearch(7.17.2)를 설치 후 외부 네트워크 엑세스를 허용하려고 elasticsearch.yml 파일에 network.host 부분을 다음과 같이 수정했습니다.
vi config/elasticsearch.yml
network.host: 0.0.0.0
수정 후 elasticsearch시작 시 bootstrap checks failed이 발생했습니다.

2. 해결 방법
- max file descriptors [4096] for elasticsearch process is too low, increase to at least [65535]
limits.conf 파일을 다음과 같이 수정
sudo /etc/security/limits.conf
<domain> <type> <item> <value>
hadoop hard nofile 65536
hadoop soft nofile 65536
수정 완료 후 사용자에게 다시 로그인해야 합니다.
ulimit -a 명령어를 입력해 'open files'이 65536으로 변경됐는지 확인합니다.
(base) [hadoop@masternode ~]$ ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 62608
max locked memory (kbytes, -l) unlimited
max memory size (kbytes, -m) unlimited
open files (-n) 65536
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 4096
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
- max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
sysctl.conf 파일 마지막 줄에 다음 내용 추가
sudo vi /etc/sysctl.conf
vm.max_map_count=655360
저장 후 다음을 실행
sysctl -p
그리고 다시 elasticsearch를 시작하니 정상적으로 동작하는것을 확인했습니다.
참고 https://programmerah.com/solved-elasticsearch-startup-error-bootstrap-checks-failed-30364/
'Trouble shooting' 카테고리의 다른 글
| Centos7 Elasticsearch 실행 시 Error (1) | 2022.04.23 |
|---|