安装kinaba

1、下载对应elasticsearch对应版本的kinaba

https://www.elastic.co/cn/downloads/past-releases

 

2、上传并解压

tar -zxvf kibana-6.1.1-linux-x86_64.tar.gz

 

3、修改配置文件

vi config/kibana.yml

server.host: "localhost"
elasticsearch.url: "http://localhost:9200"

 

4、启动

# 前台启动

bin/kibana

 

# 后台启动

nohup bin/kibana >/dev/null 2>&1 &

 


注意:后台启动之后,想停止的话需要使用这个命令查找对应的进程信息
ps -ef|grep node 或者 或 netstat -anltp|grep 5601
```

5、访问

http://localhost:5601

 

posted @ 2021-09-09 14:09  过期可乐  阅读(86)  评论(0编辑  收藏  举报