web-dev-qa-db-ja.com

Elasticsearchのmarvelプラグインをインストールする

Elasticsearchのバージョン1.1.0をダウンロードしましたが、うまく動作しています。 marvelプラグインをインストールしたいので、elasticsearchホームディレクトリから次のコマンドを実行します(公式チュートリアルの http://www.elasticsearch.org/guide/en/marvel/currentで説明されているとおりです) /#_ simple_install ):

bin\plugin -i elasticsearch/marvel/latest

しかし、次のエラーが表示されます。

-> Installing elasticsearch/marvel/latest...
Trying http://download.elasticsearch.org/elasticsearch/marvel/marvel-latest.Zip.
..
Trying http://search.maven.org/remotecontent?filepath=elasticsearch/marvel/lates
t/marvel-latest.Zip...
Trying https://oss.sonatype.org/service/local/repositories/releases/content/elas
ticsearch/marvel/latest/marvel-latest.Zip...
Trying https://github.com/elasticsearch/marvel/archive/vlatest.Zip...
Trying https://github.com/elasticsearch/marvel/archive/master.Zip...
Failed to install elasticsearch/marvel/latest, reason: failed to download out of
 all possible locations..., use -verbose to get detailed information

そして、これは-verboseを使用したときに得られるものです。

-> Installing elasticsearch/marvel/latest...
Trying http://download.elasticsearch.org/elasticsearch/marvel/marvel-latest.Zip.
..
Failed: UnknownHostException[download.elasticsearch.org]
Trying http://search.maven.org/remotecontent?filepath=elasticsearch/marvel/lates
t/marvel-latest.Zip...
Failed: UnknownHostException[search.maven.org]
Trying https://oss.sonatype.org/service/local/repositories/releases/content/elas
ticsearch/marvel/latest/marvel-latest.Zip...
Failed: UnknownHostException[oss.sonatype.org]
Trying https://github.com/elasticsearch/marvel/archive/vlatest.Zip...
Failed: UnknownHostException[github.com]
Trying https://github.com/elasticsearch/marvel/archive/master.Zip...
Failed: UnknownHostException[github.com]
Failed to install elasticsearch/marvel/latest, reason: failed to download out of
 all possible locations..., use -verbose to get detailed information
24
user2443476

Webブラウザでアドレス http://download.elasticsearch.org/elasticsearch/marvel/marvel-latest.Zip にアクセスしてみてください。この方法でmarvel-latest.Zipをダウンロードできる場合、手動でelasticsearchディレクトリの下にpluginsディレクトリを作成し、pluginsディレクトリでmarvel-latest.Zipファイルを解凍できます。つまり、Zipの内容はElasticSearchホームの下のplugins\marvelディレクトリに移動します。ディレクトリ。

解凍されたディレクトリの名前をmarvel-latestからmarvelに変更してください。

http://any-server-in-cluster:9200/_plugin/marvel/

チュートリアルで提案されています。

ElasticSearchバージョン1.1.1の場合と同様の問題がいくつかありました。の

bin\plugin -i elasticsearch/marvel/latest

コマンドはFileNotFoundエラーを出しましたが、ウェブブラウザではプラグインをダウンロードして動作させることができました。

30
Orienteerix

https://www.elastic.co/downloads/marvel に従って、これはElasticsearch 2.0+およびKibana 4.2+で機能します。

ステップ1:MarvelをElasticsearchにインストールします:

/path/to/elasticsearch/bin/./plugin install license

/path/to/elasticsearch/bin/./plugin install marvel-agent


ステップ2:MarvelをKibanaにインストールする

/path/to/kibana/bin/./kibana plugin --install elasticsearch/marvel/latest


ステップ3:ElasticsearchとKibanaを起動します

/path/to/elasticsearch/bin/./elasticsearch

/path/to/kibana/bin/./kibana


ステップ4http:// localhost:5601/app/marvel に移動します


ステップ5:センスをKibanaにインストールする場合:

/path/to/kibana/bin/./kibana plugin --install elastic/sense

27
MetalloyD

これは私のために働く:

cd /usr/share/elasticsearch/bin
./plugin -i elasticsearch/marvel/latest

出力:

-> Installing elasticsearch/marvel/latest...
Trying http://download.elasticsearch.org/elasticsearch/marvel/marvel-latest.Zip...
Downloading ........................................DONE
Installed elasticsearch/marvel/latest into /usr/share/elasticsearch/plugins/marvel

編集:ライセンスのインストール

./plugin -i elasticsearch/license/latest
6
ashwin2011

管理者としてCMDを実行すると、最新の驚異的なダウンロードが開始されます。

3
Radu

ここにアクセスして、より多くのElasticsearchプラグインを取得できます。 https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-plugins.html

Elasticsearchで使用するためにインストールされたプラグインは、フォルダー '../usr/share/elasticsearch'(デフォルト)に保存されます。

Marvelプラグインをインストールするには、次のことができます。

cd ../usr/share/elasticsearch
bin/plugin -i elasticsearch/marvel/latest

アクセス可能な場所: https://www.elastic.co/guide/en/marvel/current/_installation.html

2
Miguel Bessa

プロキシを使用している場合は、プロキシで実行してみてください。 elasticsearchのインストールパスに移動します。

私の場合>/usr/share/elasticsearch

cd /usr/share/elasticsearch

bin/plugin -DproxyPort=<porxyPort> -DproxyHost=<proxyHostDNSorIP> install license

bin/plugin -DproxyPort=<porxyPort> -DproxyHost=<proxyHostDNSorIP> install shield
1
Chandan Patra

手動でインストールしてみてください。以下は手順です

  1. ここからダウンロードしてください- https://download.elasticsearch.org/elasticsearch/marvel/marvel-latest.Zip
  2. サーバーに配置します。
  3. cd Path/To/elasticsearch-1.x.x
  4. bin/plugin -i marvel -u file:///Path/where/you/placed/marvel-latest.Zip
  5. エラスティック検索を再起動します。
  6. 任意のブラウザにアクセスして、 http:// any-server-in-cluster:9200/_plugin/marvel / と記述します
0