【问题标题】:Upgrade Required Your version of Elasticsearch is too old. Kibana requires Elasticsearch 0.90.9 or above需要升级 您的 Elasticsearch 版本太旧。 Kibana 需要 Elasticsearch 0.90.9 或更高版本
【发布时间】:2014-12-05 05:59:09
【问题描述】:

我已经在我的服务器上安装了 kibana 和弹性搜索,但是它的抛出错误

Upgrade Required Your version of Elasticsearch is too old. Kibana requires Elasticsearch 0.90.9 or above.

但我得到的结果是

的输出
curl -XGET localhost:9200/_nodes/_all/process?pretty

{
  "ok" : true,
  "cluster_name" : "elasticsearch",
  "nodes" : {
    "YZdakphGSruLIQUz332paA" : {
      "name" : "Grandmaster",
      "transport_address" : "inet[/192.168.0.36:9300]",
      "hostname" : "arun-HCL-ME-Laptop",
      "version" : "0.90.9",
      "http_address" : "inet[/192.168.0.36:9200]",
      "process" : {
        "refresh_interval" : 1000,
        "id" : 6398,
        "max_file_descriptors" : 65535,
        "mlockall" : false
      }
    }
  }
}

【问题讨论】:

    标签: elasticsearch kibana


    【解决方案1】:

    我需要通过在 elasticsearch.yml 中添加以下参数到 elasticsearch-1.4 来做更多事情

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

    见:Kibana returns "Connection Failed"https://github.com/elastic/logstash/issues/2056

    祝你好运!

    【讨论】:

      【解决方案2】:

      发生此错误是因为您配置的 Elasticsearch 服务器的 URL 不正确。应该是 kibana3/config.js 文件中的 Elastichsearch 主机

      elasticsearch: "http://192.168.0.36:80", // your IP
      

      如果您使用域浏览kibana,请将IP更改为域。

      elasticsearch: "http://domain:80"
      

      【讨论】:

        【解决方案3】:

        这是因为在 kibana config.js 文件中提到的端口是 80 然后我把它改成了。

        elasticsearch: "http://"+window.location.hostname+":9200"
        

        【讨论】:

          猜你喜欢
          • 2019-12-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 2020-12-30
          • 2020-12-14
          • 1970-01-01
          • 2020-12-11
          • 1970-01-01
          相关资源
          最近更新 更多