vlambda博客
学习文章列表

kibana在windows上的安装步骤

Kibana 是一个开源的分析和可视化平台,主要用于和 Elasticsearch 一起工作,轻松实现 ElasticSearch  的查询和管理。使用 ElasticSearch 作为 SkyWalking 的后端存储,在后续调试 SkyWalking  源码时,可能会直接查询 ElasticSearch 中的某些索引,所以一并安装 Kibana。


1.官网下载

(图片来自:https://www.elastic.co/cn/downloads/kibana


2.修改配置文件kibana.yml,如下:

kibana在windows上的安装步骤

server.port:5601
server.host:""
elasticsearch.hosts:[""]


3.运行bin目录下的kibana.bat批处理文件:

kibana在windows上的安装步骤


4.访问上述配置步骤中的:ip:5601

kibana在windows上的安装步骤

kibana在windows上的安装步骤

5.实例:添加Apache logs

kibana在windows上的安装步骤

(图片来自:https://www.elastic.co/guide/en/beats/filebeat/7.13/filebeat-installation-configuration.html


5.1 下载Filebeat:

kibana在windows上的安装步骤

5.2 安装

kibana在windows上的安装步骤

(图片来自:https://www.elastic.co/guide/en/beats/filebeat/7.13/filebeat-installation-configuration.html

  • ①下载windows版本的filebeat压缩包

  • ②解压zip文件到C:\Program Files

kibana在windows上的安装步骤

  • ③重命名filebeat-<version>-windowsFilebeat

  • ④用管理员权限打开PowerShell窗口

  • ⑤在powershell窗口中执行命令,将filebeat安装成windows服务

    • PS > cd 'C:\Program Files\Filebeat'
      PS C:\Program Files\Filebeat> .\install-service-filebeat.ps1
    • kibana在windows上的安装步骤

  • ⑥修改C:\Program Files\Filebeat\filebeat.yml的output.elasticsearch指向安装了elasticsearch的设备

5.3 安装logstash

https://www.elastic.co/cn/logstash

https://www.elastic.co/cn/downloads/logstash