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
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エラーを出しましたが、ウェブブラウザではプラグインをダウンロードして動作させることができました。
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
ステップ4: http:// localhost:5601/app/marvel に移動します
ステップ5:センスをKibanaにインストールする場合:
/path/to/kibana/bin/./kibana plugin --install elastic/sense
これは私のために働く:
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
管理者としてCMDを実行すると、最新の驚異的なダウンロードが開始されます。
ここにアクセスして、より多くの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
プロキシを使用している場合は、プロキシで実行してみてください。 elasticsearchのインストールパスに移動します。
私の場合>/usr/share/elasticsearch
cd /usr/share/elasticsearch
bin/plugin -DproxyPort=<porxyPort> -DproxyHost=<proxyHostDNSorIP> install license
bin/plugin -DproxyPort=<porxyPort> -DproxyHost=<proxyHostDNSorIP> install shield
手動でインストールしてみてください。以下は手順です