Installation of ElasticSearch-Kibana

Kibana installation

What is ELK?

ELK is the initial capitalized abbreviation of the three open source frameworks Elasticsearch, Logstash, and Kibana. ELK belongs to big data and is ready to use out of the box. It is relatively fast to get started.

What is Kibana?

Kibana is an open source analysis and visualization platform for ES, which is used to search and view interactively stored data in the ES index. Using Kibana, you can perform advanced data analysis and display through various icons. Kibana makes massive data easier to understand. He operates Simple, browser-based user interface allows quick creation of dashboards that display ES query dynamics in real time

Download Kibana

The Kibana version should be consistent with the ES version

Kibana download URL: https://mirrors.huaweicloud.com/kibana/?C=N&O=D

Download to local decompression

The file is relatively large, and it takes a little time to decompress slowly

directory after decompression

Start the Kibana service

If you start the Kibana service without starting the ES service, there will always be no ES connection

The Kibana service can only be started after the ES service needs to be started!

The following information appears, indicating that the startup is successful, Kibana default port: 5601

Visit localhost:5601 to enter Kibana's home page

The development toolbench, all our subsequent operations are written here

Since many terms on Kibana's official website are big data, we can't understand them, so Chineseization is needed at this time!

Open the configuration file to modify the configuration (for Sinicization)

Add the following line of code at the bottom for Sinicization

i18n.local: “zh-CN”

Save, and then restart the kibana service to find that the localization is successful!

Guess you like

Origin blog.csdn.net/weixin_46713508/article/details/131366689