반응형
bootstrap check failure [1] of [1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
ERROR: Elasticsearch did not exit normally - check the logs at /home/ubuntu/elasticsearch-8.3.3-node-1/logs/My-ElasticSearch.log
최대 가상메모리가 적다고 에러가 발생하여 실행이 되지 않는다.
다음 명령어 및 파일 수정합니다.
sudo vi /etc/sysctl.conf
해당 파일에 아래 문구 추가 및 숫자 수정
vm.max_map_couont=262144
그리고 명령어로 적용하면 됩니다.
ubuntu@elasticsearch:~/elasticsearch-8.3.3-node-1$ sysctl -w vm.max_map_count=262144
sysctl -w vm.max_map_count=262144: command not found
ubuntu@elasticsearch:~/elasticsearch-8.3.3-node-1$ sysctl -w vm.max_map_count=262144
sysctl: permission denied on key "vm.max_map_count", ignoring
ubuntu@elasticsearch:~/elasticsearch-8.3.3-node-1$ sudo sysctl -w vm.max_map_count=262144
vm.max_map_count = 262144
저같은 경우 이상하게 같은 명령어를 쳤는데 not found 나오는데.. 저만 그런거겟죠?
아무튼 수정하면 ES 가 정상적으로 실행이 됩니다.
Reference
반응형
'ElasticSearch' 카테고리의 다른 글
ElasticSearch data 노드 클러스터링 (0) | 2022.09.28 |
---|---|
[ElasticSearch]클러스터에 노드 2개 붙이기... (0) | 2022.09.27 |
[Elasticsearch 멀티 노드] node does not have the data role but has shard data 및bootstrap checks failed 에러 (2) | 2022.09.23 |
Elasticsearch 와 metircbeat 연결(연동) 안될때 (1) | 2022.09.23 |
elasticsearch 자바 환경변수 설정 (0) | 2022.09.20 |
댓글