es7.13.2集群安装失败报错处理

ERROR: [2] bootstrap checks failed.You must address the points described in the following [2] lines before starting Elasticsearch.

bootstrap checks failed [1] of [2]: memory locking requested for elasticsearch process but memory is not locked

bootstrap checks failed [1] of [2]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

ERROR: Elasticsearch did not exit normally - check the logs at /a/es/logs/my-cluster.log

系统:centos7.6 (vm虚拟机)

软件:java-1.8、elasticsearch-5.6.16-1.noarch

错误信息:

2019-11-21T00:29:51,557\]\[ERROR\]\[o.e.b.Bootstrap \] \[elk-1\] node validation exception \[1\] bootstrap checks failed \[1\]: memory locking requested for elasticsearch process but memory is not locked 解决方法一(关闭bootstrap.memory_lock:,会影响性能): ## vim /etc/elasticsearch/elasticsearch.yml // 设置成false就正常运行了。 bootstrap.memory_lock: false 解决方法二(开启bootstrap.memory_lock:): 1. 修改文件/etc/elasticsearch/elasticsearch.yml,上面那个报错就是开启后产生的,如果开启还要修改其它系统配置文件 bootstrap.memory_lock: true 2. 修改文件/etc/security/limits.conf,最后添加以下内容。 ```bash vim /etc/security/limits.conf ``` ```bash * soft nofile 65536 * hard nofile 65536 * soft nproc 32000 * hard nproc 32000 * hard memlock unlimited * soft memlock unlimited ``` 3. 修改文件 /etc/systemd/system.conf ,分别修改以下内容。 ```bash DefaultLimitNOFILE=65536 DefaultLimitNPROC=32000 DefaultLimitMEMLOCK=infinity ``` 改好后重启下系统。再启动elasticsearch就没报错了 。 ```bash vim /etc/sysctl.conf ``` 保存文件并执行以下命令使修改生效: ```bash sysctl -p ``` es7.13.2启动报错: bootstrap checks failed \[1\] of \[2\]: max virtual memory areas vm.max_map_count \[65530\] is too low, increase to at least \[262144

bash 复制代码
vim /etc/sysctl.conf

vm.max_map_count=262144

 sysctl -p
相关推荐
ZLRRLZ3 分钟前
【Docker】Docker安装
运维·docker·容器
逐梦吧!旅行者9 分钟前
Linux之环境变量(内容由浅入深,层层递进)
linux·运维
挨踢攻城34 分钟前
Linux 应急响应实操 Checklist
linux·运维·linux命令·rhce·rhca·厦门微思网络·linux 应急响应
wanhengidc37 分钟前
什么是云手机?
运维·网络·安全·游戏·智能手机
optiz1 小时前
细菌基因组genome二代测序数据分析
linux·运维·服务器
IT成长日记1 小时前
【Linux基础】Linux系统管理:GPT分区实践详细操作指南
linux·运维·服务器·gpt·parted·磁盘分区·fdisk
爱喝水的鱼丶2 小时前
SAP-ABAP: ABAP ASSIGN COMPONENT 语句详解:动态字段符号的利器作用用法示例详解
运维·开发语言·sap·abap·开发经验·动态字段符号
清寒敲代码2 小时前
k8s核心技术-Helm
运维·容器·kubernetes
quqi992 小时前
Enable FIPS in ubuntu (by quqi99)
linux·运维·ubuntu
人工智能训练师2 小时前
在Ubuntu中如何使用PM2来运行一个编译好的Vue项目
linux·运维·服务器·vue.js·ubuntu·容器