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
相关推荐
zt1985q10 分钟前
本地部署消息代理软件 RabbitMQ 并实现外部访问( Windows 版本 )
运维·服务器·windows·rabbitmq·ruby
zhanglianzhao1 小时前
基于云服务器自建Rustdesk远程桌面——以京东云为例
运维·服务器·京东云
Physicist in Geophy.2 小时前
新版ubuntu中sac安装问题(缺少libncurses5)
linux·运维·ubuntu
Ryan ZX3 小时前
Ubuntu 升级OpenSSH10.2p1与OpenSSL3.5.4版本避坑实践
linux·运维·服务器·ubuntu
qq_5470261793 小时前
微服务 - 网关统一鉴权
运维·网络·微服务
梁正雄3 小时前
18、docker-macvlan-2-示例
运维·docker·容器·macvlan
梁正雄3 小时前
17、docker-macvlan-1-理论
运维·docker·macvlan·docker macvlan
唐兴通个人4 小时前
新品上市咨询顾问新药上市顾问培训讲师唐兴通讲PMF从0到1天使用户种子用户冷启动问题
运维·服务器
我想吃余4 小时前
Linux信号(下):信号保存和信号处理
linux·运维·信号处理
桃子不吃李子4 小时前
简单搭建express服务器
运维·服务器·express