Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install Visualization platform Kibana under Linux

2025-03-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces how to install the visualization platform Kibana under Linux, which has a certain reference value, and interested friends can refer to it. I hope you can learn a lot after reading this article.

Kibana is an open source analysis and visualization platform designed for use with Elasticsearch. You can use kibana to search and view the data stored in Elasticsearch. The interaction between Kibana and Elasticsearch is a variety of different charts, tables, maps, etc., intuitively display data, so as to achieve the purpose of advanced data analysis and visualization.

1 install JDK

There are many online tutorials. You can also refer to the Linux installation JDK written before my tutorials.

2 install Kibana2.1 and download Kibana

This step requires downloading the same version of kibana as Elasticsearch, which I uploaded locally to the server, using 5.4.2.

Upload command

Scp / Users/dalaoyang/downloads/kibana-5.4.2-linux-x86_64.tar.gz root@ip:/usr/local/tool/kibana-5.4.2-linux-x86_64.tar.gz2.2 decompress Kibana

Upload the directory on the server and extract the kibana:

Tar-zxvf kibana-5.4.2-linux-x86_64.tar.gz2.3 modify configuration

Modify the config/kibana.yml file configuration:

Vim kibana.yml

Common configuration items for kibana.yml

# pingElasticsearch timeout elasticsearch.pingTimeout# read Elasticsearch data timeout elasticsearch.requestTimeout # Elasticsearch host address elasticsearch.url: "http://ip:9200"# allows remote access to server.host:" 0.0.0.0 "# Elasticsearch username here is actually my username for starting Elasticsearch on the server elasticsearch.username:" es "# Elasticsearch authentication password here is actually my password for launching Elasticsearch on the server elasticsearch.password:" es "

Just add the configuration according to the situation. The test I used is as follows:

# Elasticsearch host address elasticsearch.url: "http://ip:9200"# allows remote access to server.host:" 0.0.0.0 "# Elasticsearch username here is actually my username for starting Elasticsearch on the server elasticsearch.username:" es "# Elasticsearch authentication password here is actually my password for starting Elasticsearch on the server elasticsearch.password:" es "2.4 launch Kibana

Start directly, after entering the bin directory

. / kibana

Start in the background and enter the bin directory

Nohup. / kibana & 2.5 access to the management page

Visit http://ip:5601 and you can see the following page:

Image

Then you can use Kibana.

Thank you for reading this article carefully. I hope the article "how to install the visualization platform Kibana under Linux" shared by the editor will be helpful to you. At the same time, I also hope you will support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report