elasticsearch的学习文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html
执行:/home/elk/elasticsearch-5.5.0/bin/elasticsearch
——————–
报错如下:
ERROR: [2] bootstrap checks failed
[1]: max file descriptors [65535] for elasticsearch process is too low, increase to at least [65536]
[2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
—————-
解决办法:
sudo vi /etc/sysctl.conf
添加下面配置:
vm.max_map_count=655360 【修该项即可】
并执行命令:
sysctl -p
然后,重新启动elasticsearch,即可启动成功。
sudo vi /etc/security/limits.conf
添加如下内容:
* soft nofile 65536 #【修改该项即可】
* hard nofile 131072
* soft nproc 2048
* hard nproc 4096
需要系统重启。
——————-
elasticSearch启用匿名登录。直接在config/elasticsearch.conf添加该行即可。
xpack.security.enabled: false ####开启用户认证
——————–
elasticSearch数据持久化,默认情况不启用数据保存,故数据一般会几分钟就消失,按以下步骤保存索引数据。
#不同的集群名字不能相同。
cluster.name: es_vm_test
node.name: vmmaster、
#数据索引保存
path.data: /home/abc/elk-5.5.1/elkdata/data
path.logs: /home/abc/elk-5.5.1/elkdata/log
#关闭登录验证
xpack.security.enabled: false