Kibana安装

本文介绍了如何安装Kibana,包括先安装Elasticsearch,解压Kibana安装包,修改配置文件kibana.yml,并启动Kibana。启动后,访问 http://192.168.31.150:5601 进行验证。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Kibana安装

Kibana 是为 Elasticsearch设计的开源分析和可视化平台。你可以使用 Kibana 来搜索,查看存储在 Elasticsearch 索引中的数据并与之交互。你可以很容易实现高级的数据分析和可视化,以图标的形式展现出来。

1、准备

1.1 安装Elasticsearch

参考Elasticsearch环境安装

1.2 上传安装包(略)

2、安装

2.1 解压

tar -zxf kibana-6.4.3-linux-x86_64.tar.gz

2.2 修改配置文件

config/kibana.yml

server.port: 5601
server.host: "192.168.31.150"
elasticsearch.url: "http:// 192.168.31.150:9200"

2.3 启动

访问地址:http://192.168.31.150:5601/app/kibana

启动日志

log [15:44:32.396] [info][status][plugin:kibana@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:32.509] [info][status][plugin:elasticsearch@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:32.512] [info][status][plugin:xpack_main@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:32.518] [info][status][plugin:searchprofiler@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:32.525] [info][status][plugin:ml@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:32.612] [info][status][plugin:tilemap@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:32.614] [info][status][plugin:watcher@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:32.630] [info][status][plugin:license_management@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:32.632] [info][status][plugin:index_management@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:33.025] [info][status][plugin:timelion@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:33.028] [info][status][plugin:graph@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:33.258] [info][status][plugin:monitoring@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:33.263] [warning][security] Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in kibana.yml
log [15:44:33.267] [warning][security] Session cookies will be transmitted over insecure connections. This is not recommended.
log [15:44:33.277] [info][status][plugin:security@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:33.306] [info][status][plugin:grokdebugger@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:33.323] [info][status][plugin:dashboard_mode@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:33.326] [info][status][plugin:logstash@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:33.347] [info][status][plugin:apm@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:33.352] [info][status][plugin:console@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:33.356] [info][status][plugin:console_extensions@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:33.360] [info][status][plugin:notifications@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:33.373] [info][status][plugin:metrics@6.4.3] Status changed from uninitialized to green - Ready
log [15:44:35.875] [warning][reporting] Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml
log [15:44:35.877] [info][status][plugin:reporting@6.4.3] Status changed from uninitialized to yellow - Waiting for Elasticsearch
log [15:44:36.983] [info][status][plugin:elasticsearch@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.768] [info][license][xpack] Imported license information from Elasticsearch for the [data] cluster: mode: basic | status: active
log [15:44:37.920] [info][status][plugin:xpack_main@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.922] [info][status][plugin:searchprofiler@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.922] [info][status][plugin:ml@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.923] [info][status][plugin:tilemap@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.924] [info][status][plugin:watcher@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.924] [info][status][plugin:index_management@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.926] [info][status][plugin:graph@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.927] [info][status][plugin:grokdebugger@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.928] [info][status][plugin:logstash@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.928] [info][status][plugin:reporting@6.4.3] Status changed from yellow to green - Ready
log [15:44:37.929] [info][kibana-monitoring][monitoring-ui] Starting monitoring stats collection
log [15:44:37.933] [info][status][plugin:security@6.4.3] Status changed from yellow to green - Ready
log [15:44:38.058] [info][license][xpack] Imported license information from Elasticsearch for the [monitoring] cluster: mode: basic | status: active
log [15:44:54.093] [info][listening][server][http] Server running at http://192.168.31.150:5601

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值