1、安装前准备,安装需要使用和Elasticsearch相同的版本,我使用的版本是7.6.1,所需版本也基本相同,详细的安装步骤步骤可以查看 Elasticsearch7.6.1a安装步骤
2、安装脚本命令
#下载 kibana 文件 curl -L -O https://artifacts.elastic.co/downloads/kibana/kibana-7.6.1-linux-x86_64.tar.gz #解压文件 tar -xvf kibana-7.6.1-linux-x86_64.tar.gz #切换目录 cd /kibana-7.6.1/bin/ #启动kibana ./kibana &
3、注意事项同样参考 Elasticsearch7.6.1安装步骤的注意事项,也是不能使用root账户直接运行等
4、Kibana配置项
# Kibana is served by a back end server. This setting specifies the port to use. server.port: 5601 # Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values. # The default is 'localhost', which usually means remote machines will not be able to connect. # To allow connections from remote users, set this parameter to a non-loopback address. server.host: "0.0.0.0"
5、通过浏览器输入127.0.0.1:5601 即可打开Kibana可视化管理工具
备注:通过左侧“工具”,红框选中图标,就可以直接执行ES查询语句了