Elasticsearch仍在初始化kibana索引

当我尝试启动Kibana时,我面临以下问题。我首先重新启动了我的Elasticsearch服务器,该服务器已成功运行。启动Elasticsearch之后,我尝试启动Kibana,但是没有运气。

{"name":"Kibana","hostname":"ABCD","pid":3848,"level":30,"msg":"Elasticsearch is still initializing the kibana index... Trying again in 2.5 second.","time":"2015-07-03T07:35:34.936Z","v":0}

提前致谢

回答:

警告:删除.kibana索引会使您 所有kibana设置(索引,图形,仪表板)

这种现象有时是由现有.kibana索引引起的。请.kibana使用以下命令在elasticsearch中删除索引:

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

删除索引后,重新启动Kibana。

如果问题仍然存在, 并且您愿意丢失任何现有数据 ,则可以尝试使用以下命令删除所有索引:

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

随后重新启动Kibana。

注意:localhost:9200是elasticsearch服务器的host:port,您的情况可能有所不同。

以上是 Elasticsearch仍在初始化kibana索引 的全部内容, 来源链接: utcz.com/qa/423844.html

回到顶部