在安裝插件的過程中,尤其是安裝Marvel插件遇到了很多問題,要下載license、Marvel-agent,又要下載安裝Kibana
版本需求
-
Java 7 or later
-
Elasticsearch 2.4.2
-
Kibana 4.5
-
Elasticsearch License 2.4.2 plugin
系統版本是:CentOS release 6.6
一、簡介
Marvel插件介紹
Marvel插件:在簇中從每個節點匯集數據。這個插件必須每個節點都得安裝。
Marvel是Elasticsearch的管理和監控工具,在開發環境下免費使用。它包含了一個叫做Sense的交互式控制台,使用戶方便的通過瀏覽器直接與Elasticsearch進行交互。
kibana 插件介紹
kibana 插件提供了Marvel監控的UI界面。
kibana是一個與elasticsearch一起工作的開源的分析和可視化的平台。使用kibana可以查詢、查看並與存儲在elasticsearch索引的數據進行交互操作。使用kibana能執行高級的數據分析,並能以圖表、表格和地圖的形式查看數據。
kibana使得理解大容量的數據變得非常容易。它非常簡單,基於瀏覽器的接口使我們能夠快速的創建和分享顯示elasticsearch查詢結果實時變化的儀表盤。
二、elasticsearch的簡單安裝
配置更新源 /etc/yum.repos.d/elasticsearch.repo
[elasticsearch-2.x] name=Elasticsearch repository for2.x packages baseurl=https://packages.elastic.co/elasticsearch/2.x/centos gpgcheck=1 gpgkey=https://packages.elastic.co/GPG-KEY-elasticsearch enabled=1
安裝elasticsearch
yum install elasticsearch chkconfig --add elasticsearch
三、安裝Marvel agent and License plugins
cd /usr/share/elasticsearch sudo bin/plugin install license sudo bin/plugin install marvel-agent
如果源安裝很慢,可以使用離線安裝
-
https://download.elastic.co/elasticsearch/release/org/elasticsearch/plugin/license/2.4.2/license-2.4.2.zip (sha1)
-
https://download.elastic.co/elasticsearch/release/org/elasticsearch/plugin/marvel-agent/2.4.2/marvel-agent-2.3.2.zip (sha1)
-
https://download.elasticsearch.org/elasticsearch/marvel/marvel-2.3.1.tar.gz (sha1)
bin/plugin install file:///path/to/file/license-2.4.2.zip bin/plugin install file:///path/to/file/marvel-agent-2.4.2.zip bin/kibana plugin --install marvel --url file:///path/to/file/marvel-2.3.1.tar.gz
配置marvel.agent.exporters ( elasticsearch.yml)
marvel.agent.exporters:
id1:
type: http
host: ["http://es-mon-1:9200", "http://es-mon2:9200"]
三、kibana 插件安裝

導入key
rpm –import https://packages.elastic.co/GPG-KEY-elasticsearch
配置更新源 /etc/yum.repos.d/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
安裝kibana
yum install kibana chkconfig –add kibana
目前官方最新版是 5.0.1 ,這個要和 ES版本配套(這里有坑)

安裝 Marvel (Kibana)
bin/kibana plugin --install elasticsearch/marvel/2.3.1
配置Kibana(kibana.yml)
elasticsearch_url: "http://es-mon-1:9200"
安裝Sense(Kibana)
一個flask寫的elasticsearch查詢工具:支持es查詢語言自動提示,es結構自動提示,支持兩種主題,支持查詢歷史記錄,支持快捷鍵。
./bin/kibana plugin --install elastic/sense

官方網址
https://www.elastic.co/guide/en/marvel/current/introduction.html
https://www.elastic.co/guide/en/elasticsearch/reference/current/_installation.html


