Kibana 连接elasticsearch失败
elasticsearch 版本:1.4.2
kibana 版本:3.1.2
按照http://stackoverflow.com/questions/26828099/kibana-returns-connection-...
添加了
http.cors.allow-origin: "/.*/"
http.cors.enabled: true
仍然无用,nginx给kibana加了
add_header Access-Control-Allow-Origin '*';
仍然提示
XMLHttpRequest cannot load http://10.0.10.221:9200/_nodes. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://kibana.dev.com' is therefore not allowed access.
直接访问http://10.0.10.221:9200/_nodes ok
现在不知道哪里出了问题
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用最新版本的 ELK 就不会出问题
https://www.elastic.co
国外大神的回答,亲测可用,你试试:
If you are using elasticsearch-1.4 with Kibana-3 then add following parameters in elasticsearch.yml filehttp.cors.allow-origin: "/.*/"
http.cors.enabled: true
还有,据说kibana4解决了这个问题。