Elasticsearch is still initializing the kibana index

后端 未结 4 808
面向向阳花
面向向阳花 2020-12-13 12:32

When I am trying to start Kibana I am facing the following issue. I first restarted my elasticsearch server it was running successfully. After starting Elasticsearch I tried

相关标签:
4条回答
  • 2020-12-13 12:59

    the curl -XDELETE http://localhost:9200/.kibana command works fine, however you lost all your kibana' settings (indexes, graphs, dashboards); by just querying the index I've solved the problem, without losing my data. For example:

    curl -s http://localhost:9200/.kibana/_recovery?pretty
    curl -XPUT 'localhost:9200/.kibana/_settings' -d '
    {
        "index" : {
            "number_of_replicas" : 0
        }
    }'
    

    Then start Kibana, it should works.

    Gael Le Moellic

    0 讨论(0)
  • 2020-12-13 13:05

    Sometimes you need to wait few minutes after restarting ES.
    That can be also connected with low disk space.
    Observed on AWS t2.small machine with ELK stack.

    0 讨论(0)
  • 2020-12-13 13:12

    Warning: Removing .kibana index will make you lose all your kibana settings (indexes, graphs, dashboards)

    This behavior is sometimes caused by an existing .kibana index. Kindly delete the .kibana index in elasticsearch using following command:

    curl -XDELETE http://localhost:9200/.kibana
    

    After deleting the index, restart Kibana.

    If the problem still persists, and you are willing to lose any existing data, you can try deleting all indexes using following command:

    curl -XDELETE http://localhost:9200/*
    

    Followed by restarting Kibana.

    Note: localhost:9200 is the elasticsearch server's host:port, which may be different in your case.

    0 讨论(0)
  • 2020-12-13 13:13

    Something is wrong with your Kibana index inside elasticsearch. I had the same message and i just deleted my Kibana index and then, when i restarted it, a new index of Kibana was created by the service.

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