linux下安装 kibana

一、下载软件
二、安装部署
2.1. 修改配置config/kibana.yml
2.2. 后台运行
2.3. 停止kibana方法
一、下载软件
https://www.elastic.co/cn/downloads/kibana

二、安装部署
2.1. 修改配置config/kibana.yml

端口

server.port: 5601

主机

server.host: "0.0.0.0"

Kibana服务名

server.name: "kibana"

es的地址

elasticsearch.hosts: ["http://localhost:9200"
]

kibana在es中的索引

kibana.index: ".kibana"

kibana访问es的用户名和密码

elasticsearch.username: "kibana"
elasticsearch.password: "vfACoEwlS5HFM1O78A6e"

使用中文

i18n.locale: "zh-CN"
复制
2.2. 后台运行
nohup bin/kibana &
2.3. 停止kibana方法
[root@localhost bin]# ps -ef | grep node
root 3607 3247 1 13:49 pts/1 00:00:06 ./../node/bin/node --no-warnings ./../src/cli
root 3680 3247 0 13:56 pts/1 00:00:00 grep --color=auto node
[root@localhost bin]# kill -9 3607

你可能感兴趣的:(linux下安装 kibana)