network.bind_host
繫結允許訪問的ip,可以為多個
network.publish_host
發布位址,只能是乙個
啟動報錯:
error: [3] bootstrap checks failed
[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65535]
[2]: max number of threads [1024] for user [caogt] is too low, increase to at least [4096]
[3]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
錯誤1:當前使用者的開啟檔案控制代碼數太小,至少需要65535個
解決方式:
vi /etc/security/limits.conf
增加如下:號後有空格
*hard nofile 65536
*soft nofile 65536
*表示所有使用者
問題2: 當前使用者的執行緒數最少4096個
解決方式
vi /etc/security/limits.d/90-nproc.conf
增加如下:號後有空格
*soft nproc 4096
問題3:虛擬記憶體太小,至少262144
解決方式
vi /etc/sysctl.conf
新增vm.max_map_count=262144
單機部署ElasticSearch
單機部署elasticsearch 2.解壓.tar安裝包 tar zcvf elasticsearch 6.3.0.tar.gz3.進入到 elasticsearch 6.3.0 檔案中 cd elasticsearch 6.3.04.啟動elasticsearch bin elasticsear...
ElasticSearch 單機部署
2.解壓安裝包tar zxvf elasticsearch 7.8.1.tar.gz3.修改 linux 系統限制配置,將檔案建立數修改為65536個。1.修改系統中允許應用最多建立多少檔案等的限制許可權。linux預設來說,一般限制應用最多建立的檔案是65535個。但是es至少需要65536的檔案...
elasticsearch 7 單機配置
elasticsearch 7.0.0 新版更新,填個坑 error1 cluster.initial master nodes is empty on this node error 2 the default discovery settings are unsuitable for produ...