7. Detailed explanation of elasticsearch plug-in two kibana plug-in installation

Mingyi World, original address: blog.csdn.net/laoyang360 https://blog.csdn.net/wojiushiwo987/article/details/51472821

1. Introduction to kibana plugin

The kibana plugin provides a UI interface for Marvel monitoring. 
kibana is an open source analytics and visualization platform that works with elasticsearch. Use kibana to query, view, and interact with data stored in elasticsearch indexes. Use kibana to perform advanced data analysis and view data in charts, tables, and maps. 
kibana makes it very easy to understand large volumes of data. Its very simple, browser-based interface allows us to quickly create and share dashboards that show real-time changes in elasticsearch query results.

Second, kibana plugin installation

[Premise]: Operating system version

[root@5b9dbaaa148a config]# cat /etc/issue 
CentOS release 6.6 (Final)

Step 1: Download and install the public signing key.

rpm –import  https://packages.elastic.co/GPG-KEY-elasticsearch 
Step 2: Create kibana.repo in the /etc/yum.repos.d/ directory and add the following content

[root@lyang yum.repos.d]# cat kibana.repo
[kibana-4.5]
name=Kibana repository for 4.5.x packages
baseurl=http://packages.elastic.co/kibana/4.5/centos
gpgcheck=1
gpgkey=http://packages.elastic.co/GPG-KEY-elasticsearch
enabled=1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

Step 3: Install kibana

yum install kibana

Step 4: Set the boot to start automatically

chkconfig –add kibana

【Check whether the installation is successful or not】

Access address: http://10.8.5.101:5601/  (you can replace it with your own IP address, the default port is 5601). 
screenshot: 
write picture description here

3. Common bugs in kibana plugin installation

Kibana Unable to connect to elasticsearch at http://localhost:9200

solution:

Modify the configuration file kibana.yml, and write the following url in the form of ip and port: 
elasticsearch.url: " http://10.8.5.101:9200 ".

Reference address: http://stackoverflow.com/questions/29643060/messageno-living-connections-node-envproduction  
https://www.elastic.co/guide/en/kibana/current/setup.html 


Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324524259&siteId=291194637