版本選擇
kibana-5.6.15-x86_64.rpm
Kibana安裝
第1、2、3步類似Filebeat安裝。
4.配置kibana.yml
vim kibana.yml

kibana.yml詳情,如下代碼塊:
# Kibana is served by a back end server. This setting specifies the port to use.
server.port: 5601
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
server.host: "10.10.61.205"
# The URL of the Elasticsearch instance to use for all your queries.
elasticsearch.url: "http://10.10.61.205:9200"
- Kibana運行
- Kibana前臺啟動
./kibana
Kibana啟動成功。
Kibana訪問地址:http://10.10.61.205:5601/
- Kibana前臺停止
按組合鍵ctrl+c即可停止Kibana運行。 - Kibana后臺啟動
nohup ./kibana &
- Kibana進程查詢
ps -ef|grep node
- Kibana后臺停止
kill -9 29849
29849為上步查詢出的pid。 -
配置索引
index pattern根據(jù)Logstash配置中out的index值來填寫。
- Kibana前臺啟動






