04-ElasticSearch - The installation Kibana

Introduce a Kibana

Kibana is an open source data analysis and visualization platform, it is one of Elastic Stack members, and Elasticsearch designed for collaboration.

You can use Kibana data Elasticsearch index search, view, interact.

You can easily make use of charts, tables and maps the data analysis and presentation of a wide range of

Details can be found User Manual:

https://www.elastic.co/guide/cn/kibana/current/index.html

Note Elasticsearch version is compatible with the situation, as detailed:

https://www.elastic.co/cn/support/matrix#matrix_compatibility

Download address is:

https://www.elastic.co/cn/downloads/past-releases

Two download Libana

To the appropriate address, you can download

image-20191204195700775

Unzip the file after downloading

Three to modify the configuration file

Modify the configuration file: vim installation directory /config/kibana.yml

# 更多配置信息,详见 https://www.elastic.co/guide/cn/kibana/current/settings.html
server.port: 5601
server.host: "127.0.0.1"
server.name: lqz
elasticsearch.hosts: ["http://localhost:9200/"]

Four start

To the installation directory:

./bin/kibana
#正常启动

Six View

Access in the browser: HTTP: // localhost: 5601 / App / kibana

(Eg not visit, try to delete es in kibana with relevant index)

Select Dev Tools

image-20191204210857615

Enter GET _settings in the console, the query can be seen as follows

image-20191204211133809

Guess you like

Origin www.cnblogs.com/dreamlyue/p/12128297.html