Kibana installation, configuration and use

1. Kibana installation and configuration

Prerequisite: In the software directory under the root directory of the root user

Insert picture description here

1. Input tar -zxf kibana-6.2.2-linux-x86_64.tar.gz(unzip)

2. Input mv kibana-6.2.2-linux-x86_64 kibana(rename)

3. Input vi kibana/config/kibana.yml(modify configuration)

4. Come to the last line, enter the following code block

server.host: "192.168.83.2"
elasticsearch.url: "http://192.168.83.2:9200"

After inputting the rendering,
Insert picture description here
save and exit

5. Input nohup kibana/bin/kibana &(start)

6. Open the web page, enter and 192.168.83.2:5601test

Effect picture
Insert picture description here

2. Use of Kibana

Guess you like

Origin blog.csdn.net/nayomi927/article/details/114945184