linux 설치 ElasticSearch에서 발생한 오류

1077 단어 elasticsearch
홈페이지 주소: ES 홈페이지
1. 루트 사용자를 사용할 수 없습니다. 새 사용자 권한을 가지고 조작해야 합니다.
그렇지 않으면 오류가 발생합니다.

Exception in thread "main" java.lang.RuntimeException: don't run elasticsearch as root

2, 액세스 시작 404 및 일부 오류
해결 방법 수정:vim config/elasticsearch.yml 증가
network.host: 0.0.0.0
#centerOS7 
bootstrap.memory_lock: false
bootstrap.system_call_filter: false
# 0.0.0.0    
cluster.initial_master_nodes: ["node-1", "node-2"]

 
3. ElasticSearch 오류 발생 [1]: max file descriptors [4096] for elasticsearch process is too low

  etc/security/limits.conf

sudo vi /etc/security/limits.conf
 

* soft nofile 65536
* hard nofile 65536
* soft nproc 4096
* hard nproc 4096
 :* 

  /etc/sysctl.conf

sudo vi /etc/sysctl.conf
 

vm.max_map_count=262144
 

sysctl -p

4、ERROR: [3] max number of threads [1024] for user [elsearch] is too low, increase to at least [4096]
 limits.d :

vi /etc/security/limits.d/90-nproc.conf

 4096

* soft    nproc     4096

좋은 웹페이지 즐겨찾기