Mac安装Kibana

Kibana是ES的一个配套工具,让用户在网页中可以直接与ES进行交互。

安装:brew install kibana

==> Downloading https://homebrew.bintray.com/bottles/kibana-6.5.4.sierra.bottle.tar.gz
######################################################################## 100.0%
==> Pouring kibana-6.5.4.sierra.bottle.tar.gz
==> Caveats
Config: /usr/local/etc/kibana/
If you wish to preserve your plugins upon upgrade, make a copy of
/usr/local/opt/kibana/plugins before upgrading, and copy it into the
new keg location after upgrading.


To have launchd start kibana now and restart at login:
  brew services start kibana
Or, if you don't want/need a background service you can just run:
  kibana
==> Summary
  /usr/local/Cellar/kibana/6.5.4: 52,325 files, 274.0MB

安装完后执行:kibana 启动

Kibana的默认端口是5601 

➜  ~ kibana
  log   [10:12:00.018] [info][status][plugin:[email protected]] Status changed from uninitialized to green - Ready
  log   [10:12:00.082] [info][status][plugin:[email protected]] Status changed from uninitialized to yellow - Waiting for Elasticsearch
  log   [10:12:00.213] [info][status][plugin:[email protected]] Status changed from uninitialized to green - Ready
  log   [10:12:00.219] [info][status][plugin:[email protected]] Status changed from uninitialized to green - Ready
  log   [10:12:00.222] [info][status][plugin:[email protected]] Status changed from uninitialized to green - Ready
  log   [10:12:00.348] [info][status][plugin:[email protected]] Status changed from yellow to green - Ready
  log   [10:12:00.380] [info][migrations] Creating index .kibana_1.
  log   [10:12:01.073] [info][migrations] Pointing alias .kibana to .kibana_1.
  log   [10:12:01.146] [info][migrations] Finished in 766ms.
  log   [10:12:01.147] [info][listening] Server running at http://localhost:5601

 

你可能感兴趣的:(elasticsearch)