ElasticSearch5:Kibana可视化平台

ElasticSearch5:Kibana可视化平台

Kibana下载

Kibana版本需要和ES版本对应。访问ES官网,下载Kibana。
notion image
前面安装ES是8.1.2,这里安装Kibana版本也需要是8.1.2。大小257M。

安装

解压

# 解压,使用root用户解压 root@redis01:/usr/local# tar -zxvf kibana-8.1.2-linux-x86_64.tar.gz
查看一下解压目录
notion image

配置

配置config/kibana.yml文件
root@redis01:/usr/local/kibana-8.1.2/config# vim kibana.yml
server.host: "0.0.0.0" elasticsearch.hosts: ["http://localhost:9200"]
notion image
notion image
 
给普通用户赋予权限
bigdata@redis01:/usr/local$ sudo chown -R bigdata:root /usr/local/kibana-8.1.2

启动

bigdata@redis01:/usr/local/kibana-8.1.2/bin$ ./kibana
notion image
访问端口号5601,http://192.168.92.145:5601/
notion image

测试

使用detools工具
notion image
点击运行,目前还没有数据
notion image