Elastic Search添加X-Pack插件后,head无法访问的问题

Posted zym1414

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Elastic Search添加X-Pack插件后,head无法访问的问题相关的知识,希望对你有一定的参考价值。

版本5.4.1

最近调试ElasticSearch集群时,为了监控方便部署了X-Pack,然后因为验证的问题,head无法正确连接集群了。

查了一些中文资料给出的方法是在elasticsearch.yml中添加如下三行

(1)

http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-headers: Authorization

然后用(2)

http://localhost:9100/?auth_user=elastic&auth_password=changeme

的方式访问head,发现并不能解决问题,依然还是无法连接。

研究后发现,需要将上面的elasticsearch.yml中的三行变更为

(3)

http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-headers: Authorization,X-Requested-With,Content-Length,Content-Type 

 此后可以正确通过(2)的访问方式访问head,成功连接,问题解决

以上是关于Elastic Search添加X-Pack插件后,head无法访问的问题的主要内容,如果未能解决你的问题,请参考以下文章

安装elastic6.1.3及插件kibana,x-pack,essql,head,bigdesk,cerebro,ik

Elasticsearch安装X-Pack插件

elastic search安全加固手册

elastic search 索引

x-pack

Elastic Search | Head插件的安装与简单使用