Kibana 安装部署环境

版权声明: https://blog.csdn.net/Master_chaoAndQi/article/details/83931324

1 下载 Kibana   安装包 (安装版本和elasticsearch保持一致)

wget https://artifacts.elastic.co/downloads/kibana/kibana-6.4.3-linux-x86_64.tar.gz

2 官网安装教程

https://www.elastic.co/guide/en/kibana/6.4/install.html


https://www.elastic.co/guide/en/kibana/6.4/targz.html 安装教程

3 解压文件 

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

4 启动kibana

./bin/kibana
  log   [18:10:16.585] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:10:16.591] [info][kibana-monitoring][monitoring-ui] Starting monitoring stats collection
  log   [18:10:16.604] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:10:16.760] [info][license][xpack] Imported license information from Elasticsearch for the [monitoring] cluster: mode: basic | status: active
  log   [18:10:17.474] [info][listening][server][http] Server running at http://localhost:5601
Server running at http://localhost:5601 #启动成功

5 修改IP地址

elasticsearch.url: "http:192.168.34.3:9200" # ealsticsearch 地址

server.host: "0.0.0.0" 
 
  log   [18:23:52.536] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.538] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.539] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.541] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.542] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.544] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.546] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.547] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.549] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.551] [info][kibana-monitoring][monitoring-ui] Starting monitoring stats collection
  log   [18:23:52.559] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [18:23:52.672] [info][license][xpack] Imported license information from Elasticsearch for the [monitoring] cluster: mode: basic | status: active
  log   [18:23:53.629] [info][listening][server][http] Server running at http://0.0.0.0:5601

6 在浏览器中输入ip地址进行访问进入kibana  web页面

猜你喜欢

转载自blog.csdn.net/Master_chaoAndQi/article/details/83931324