본문 바로가기

카테고리 없음

[Error] max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]; for more information see

validation exception[1] bootstrap checks failed. You must address the points described in the following [1] lines before starting Elasticsearch. For more information see [https://www.elastic.co/guide/en/elasticsearch/reference/8.12/bootstrap-checks.html]bootstrap check failure [1] of [1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]; for more information see [https://www.elastic.co/guide/en/elasticsearch/reference/8.12/_maximum_map_count_check.html]

 

 

Elasticsearch가 부팅 중에 실행되는 부트스트랩 체크 중 실패를 나타냄

max virtual memory areas 낮게 설정됨이 감지되었다는 것으로 vm.max_map_count 값이 특정 기준보다 높아야 함을 나타냄

 

관리자 권한으로 터미널을 열어서 설정하는 방법

sudo sysctl -w vm.max_map_count=262144

 

 

 

설정 파일 변경

sudo nano /etc/sysctl.conf

# 파일 맨 아래 아래 라인 추가
vm.max_map_count=262144

# 변경을 적용하기 위해 명령어 입력
sudo sysctl -p

# Elasticsearch 재시작