kibana报错:Unable to revive connection: http://localhost:9200/

出现的问题:

启动之后,在window页面无法访问页面,将kibana.yml中的server.host: “localhost”改为server.host: “0.0.0.0”,重启后生效,注意必须要重启

log [14:48:30.947] [warning][admin][elasticsearch] Unable to revive connection: http://localhost:9200/ 
log [14:48:30.948] [warning][admin][elasticsearch] No living connections 
log [14:48:30.952] [info][status][plugin:[email protected]] Status changed from uninitialized to green- Ready

解决办法:

在config/kibana.yml里面添加如下: 
elasticsearch_url: “http://192.168.1.104:9200”
 

发布了109 篇原创文章 · 获赞 19 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/qq_38151401/article/details/104077727