1. 程式人生 > >elasticsearch6.3版本linux搭建

elasticsearch6.3版本linux搭建

搭建過程中遇到的問題,總結一下:

由於6.3版本需要的jdk是1.8的,所以必須升級jdk。

1.cdh版本目前的jdk是1.7,所以再安裝1.8的jdk,需要注意兩個版本如何共存。

2.安裝6.3版本的時候,會遇到的問題:

一:ERROR: bootstrap checks failed

在elasticsearch.yml中配置bootstrap.system_call_filter為false
bootstrap.memory_lock: false

bootstrap.system_call_filter: false

二:

max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]


max number of threads [1024] for user [elsearch] is too low, increase to at least [2048]

max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

解決:

編輯limits.conf 檔案

vim /etc/security/limits.conf 

* soft nofile 65536
* hard nofile 65536


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

找到如下內容:

soft nproc 1024

修改為

soft nproc 2048

vi /etc/sysctl.conf

新增下面配置:

vm.max_map_count=655360

並執行命令:

sysctl -p