26

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
4

7 に答える 7

6

これは私のために働く:

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
于 2015-09-07T10:36:29.807 に答える
2

ここにアクセスして、より多くの 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

于 2015-07-30T00:21:57.877 に答える
1

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

私の場合 > /usr/share/elasticsearch

cd /usr/share/elasticsearch

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

bin/plugin -DproxyPort=<porxyPort> -DproxyHost=<proxyHostDNSorIP> install shield
于 2016-08-23T16:17:29.217 に答える