ES 环境搭建
Posted tomren
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES 环境搭建相关的知识,希望对你有一定的参考价值。
配置 IP 后出错 network.host: x.x.x.x
ERROR: [2] bootstrap checks failed
[1]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
[2]: system call filters failed to install; check the logs and fix your configuration or disable system call filters at your own ris
[1] 设置
sysctl -w vm.max_map_count=655360
sysctl -p
[2]解决方法:
编辑 elasticsearch.yml 中配置 bootstrap.system_call_filter 为 false,注意要在Memory下面:
bootstrap.memory_lock: false
bootstrap.system_call_filter: false
以上是关于ES 环境搭建的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段