下载安装Kibana
1. 下载地址:https://www.elastic.co/cn/downloads/kibana
2. 解压下载的压缩包
1
|
[root@localhost ~] # tar -zxvf kibana-7.6.0-linux-x86_64.tar.gz |
3. 给es用户分配权限
1
2
|
[root@localhost ~] # chown -R es:es kibana-7.6.0-linux-x86_64 [root@localhost ~] # chmod 770 kibana-7.6.0-linux-x86_64 |
4. 切换到es用户启动kibana,不能用root用户启动。会报错。
1
|
[root@localhost ~] # su es |
启动 Kibana
1. 用es用户运行kibana(随便用户都行,只要不是root用户就行)
1
2
3
|
[es@localhost ~] # cd kibana-7.6.0-linux-x86_64/ # 首先进入 kibana-7.6.0-linux-x86_64 目录下面 [es@localhost ~] # bin/kibana # 启动运行 kibana [es@localhost ~] # nohup bin/kibana & # 后台启动 |
Kibana 配置说明
配置文件位于 /elasticsearch-7.6.0/config 目录下面。
kibana.yml 关键配置说明
1
2
3
4
|
server.host: "192.168.25.180" # 访问 kibana 用的地址 server.port: 5601 # 访问 kibana 用的端口 server.name: "kibana" # 服务名 elasticsearch.hosts: [ "http://192.168.25.180:9200" ] # ES 的地址 |