1.首先下载Kibana
https://www.elastic.co/downloads
2.解压
tar -zxvf kibana-6.2.1-linux-x86_64.tar.gz -C ~/software/
3.修改配置,在config文件夹下面修改kibana.yml
#配置本机ip server.host: "127.0.0.1" #配置es集群url elasticsearch.url: "http://127.0.0.1:9200"
4.启动
./bin/kibana
5.访问web
http://localhost:5601/app/kibana
6.在manager里面添加index,demo中的index名称叫做es
添加之后
原文:https://www.cnblogs.com/tonglin0325/p/9000122.html