Kibana-- installation and deployment

 

1. Prepare

  The JDK : Version 1.8 and above;

  Kibana : 6.2.4 printed books;

 

2. Install

2.1 download, unzip

wget https://artifacts.elastic.co/downloads/kibana/kibana-6.2.4-linux-x86_64.tar.gz
mkdir /opt/elk/kibana-6.2.4
tar zxvf kibana-6.2.4.tar.gz  -C /opt/elk/kibana-6.2.4

 

2.2. Configuration

cd /opt/elk/kibana-6.2.4/config
vi kibana.yml

Adjust the following three main attributes, other without modification:

server.port: 5601                      # port, no need to modify 
server.host: 10.0 . 101.100                 # Local IP address  
elasticsearch.url: " http://10.0.101.100:9200 "      #ES cluster address

 

2.3. Start

cd /opt/elk/kibana-6.2.4/bin
nohup ./kibana &

 

3. Verify

Input Address: http://10.0.101.100:5601

 

 

Guess you like

Origin www.cnblogs.com/caoweixiong/p/11826655.html