外部无法访问ES的解决方案

外部无法访问ES的解决方案:

打开Elasticsearch安装路径下config目录下的elasticsearch.yml文件,加入如下配置:

discovery.seed_hosts: ["host1"]

network.host: 0.0.0.0

 

重新启动ES即可。

PS:如果修改配置文件后,启动报错max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536],解决方案如下:

编辑 /etc/security/limits.conf,添加以下内容;

* soft nofile 65536

* hard nofile 65536

es soft nproc 65536

es hard nproc 65536

修改后重新登录es用户,启动ES即可

(es用户是用来启动Elasticsearch的)

你可能感兴趣的:(elasticsearch,jenkins,大数据)