Kibana5.2监控ES5.2集群排错记录

       今天调整下集群,kibana竟然无耻的报错,记录一下,避免以后掉坑;

       kibana报错提示:

网上有很多排错案例,删除.kibana索引即可,但是我的环境没有好使;

我使用的ES和Kibana都是5.2的版本,系统是centos7.2的。

cat kibana.yml

server.host: "192.168.80.11"
elasticsearch.url: "http://192.168.80.11:9200"
xpack.security.enabled: false
xpack.monitoring.enabled: true
xpack.graph.enabled: false
xpack.reporting.enabled: false

集群配置:

cat elasticsearch.yml

cluster.name: escluster
node.name: node-1
node.master: true
node.data: true
bootstrap.memory_lock: false
path.data: /export/es52/data
path.logs: /export/es52/logs
network.host: 192.168.80.11
http.port: 9200
discovery.zen.ping.unicast.hosts: ["192.168.80.11:9300", "192.168.80.13:9300", "192.168.80.15:9300"]
discovery.zen.minimum_master_nodes: 3

#x-pack

xpack.security.enabled: false
xpack.monitoring.enabled: true
xpack.graph.enabled: false
xpack.watcher.enabled: false

结果上图:

Kibana5.2监控ES5.2集群排错记录_第1张图片

你可能感兴趣的:(JAVA,Elasticsearch,运维,监控)