Kibana returns “Connection Failed”

前端 未结 2 400
长情又很酷
长情又很酷 2021-01-31 15:57

I am trying to run ElasticSearch with Kibana in Windows 2008 R2.

I followed this article: Install-logstash-on-a-windows-server-with-kibana

Step by step, but all

相关标签:
2条回答
  • 2021-01-31 16:48

    In my case the problem was caused by the HTTP_PROXY environment variable being set and the proxy being down.

    It's not the most obvious cause, and there is no obvious way from the error message that you would think to look at that.

    Unsetting HTTP_PROXY and restarting Kibana did the trick.

    0 讨论(0)
  • 2021-01-31 16:49

    I have faced similar kind of issue.

    If you are using elasticsearch-1.4 with Kibana-3 then add following parameters in elasticsearch.yml file

    http.cors.allow-origin: "/.*/"
    http.cors.enabled: true
    

    Reference, https://gist.github.com/rmoff/379e6ce46eb128110f38

    0 讨论(0)
提交回复
热议问题