大数据运维(54)kibana 安装

下载:https://www.elastic.co/downloads/kibana

文档:https://www.elastic.co/guide/en/kibana/current/index.html

 

安装

 

安装jdk:

1 yum install -y java-1.8.0-openjdk-devel

下载:

1 wget https://artifacts.elastic.co/downloads/kibana/kibana-6.6.0-x86_64.rpm

安装:

1 yum install kibana-6.6.0-x86_64.rpm

编辑配置文件:

1 2 3 4 vim /etc/kibana/kibana.yml server.port: 5601 server.host: 0.0.0.0 elasticsearch.hosts: ["http://192.168.1.149:9200"]

访问地址:

1 http://192.168.96.137:5601

点 Discover 添加数据,完成后点搜索框右边选择合适的时间即可看到数据。

上一篇:linux – 路由不正确匹配 – 网络无法访问


下一篇:elastic-job 分布式定时任务框架 在 SpringBoot 中如何使用