Download, installation and use of kibana

1. Results preview

Insert picture description here

2. Download

Download link : https://www.elastic.co/downloads/kibana
Choose the kibana that is consistent with your es version
Insert picture description here

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

Three, installation

Unzip

tar -xf kibana-6.3.2-linux-x86_64.tar.gz

Move to the /usr/local directory and rename

mv kibana-6.3.2-linux-x86_64 /usr/local
cd /usr/local
mv kibana-6.3.2-linux-x86_64 kibana

Four, configuration

Edit the file config/kibana.yml and configure the properties:

cd kibana/config/
vim kibana.yml

Change the attribute server.host, otherwise the external network cannot access
server.host: "0.0.0.0"
Insert picture description here
Warm reminder: In addition, this office uses a cloud server, so you need to open the access permission of port 5601 corresponding to kibana, otherwise the external network cannot be accessed
Insert picture description here

Five, use

1. Start ES first (start under a non-root user)

cd /usr/local/elasticsearch
bin/elasticsearch

2. Restart kiban (start under root user)

cd /usr/local/kibana
bin/kibana

Insert picture description here

6. Visit

http://ip:5601

Seven, other

If you want to monitor ES in Kibana, you need to install the X-pack plug-in. When installing X-pack, you operate in the ElasticSearch root directory and Kibana root directory. However, during the installation process, I found that both ElasticSearch and Kibana have been installed by default.
Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_44704985/article/details/111773819