web-dev-qa-db-fra.com

Installer le plugin marvel pour Elasticsearch

J'ai téléchargé la version 1.1.0 d'elasticsearch et tout fonctionne bien. Je voudrais installer le plugin marvel, je lance donc la commande suivante depuis le répertoire personnel de elasticsearch (exactement comme indiqué dans le didacticiel officiel à http://www.elasticsearch.org/guide/en/marvel/current/# _simple_install ):

bin\plugin -i elasticsearch/marvel/latest

Mais j'obtiens l'erreur suivante:

-> 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

Et voici ce que je reçois quand j'utilise -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
25
user2443476

Vous pouvez essayer d’accéder à l’adresse http://download.elasticsearch.org/elasticsearch/marvel/marvel-latest.Zip avec votre navigateur Web. Si vous pouvez télécharger le fichier marvel-latest.Zip de cette manière, vous pouvez créer manuellement le répertoire plugins dans le répertoire elasticsearch et décompresser le fichier marvel-latest.Zip dans le répertoire plugins. sous répertoire personnel ElasticSearch.

Assurez-vous de renommer le répertoire décompressé de marvel-latest en marvel, de sorte que cette adresse

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

suggéré dans les travaux de tutoriel.

J'ai eu un problème assez similaire à celui que vous avez avec ElasticSearch version 1.1.1. le

bin\plugin -i elasticsearch/marvel/latest

la commande donnait des erreurs FileNotFound, mais avec le navigateur Web, j'ai pu télécharger le plugin et le faire fonctionner.

30
Orienteerix

Cela fonctionne pour Elasticsearch 2.0+ et Kibana 4.2 + Selon https://www.elastic.co/downloads/marvel

Étape 1: Installez Marvel dans Elasticsearch: 

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

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


Étape 2: Installer Marvel à Kibana

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


Étape 3: Démarrer Elasticsearch et Kibana

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

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


Étape 4: accédez à http: // localhost: 5601/app/marvel


Étape 5: Pour installer Sense dans Kibana:

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

26
MetalloyD

Cela fonctionne pour moi:

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

sortie:

-> 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

EDIT: Installation de la licence

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

Exécutez votre CMD en tant qu’administrateur et le dernier téléchargement de marvel commencera.

3
Radu

Vous pouvez obtenir plus de plugins Elasticsearch en cliquant ici: https://www.elastic.co/guide/fr/elasticsearch/reference/current/modules-plugins.html

Les plugins installés pour être utilisés avec Elasticsearch sont enregistrés dans le dossier '../usr/share/elasticsearch' (par défaut).

Pour installer le plugin Marvel, vous pouvez faire:

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

Accessible en: https://www.elastic.co/guide/en/marvel/current/_installation.html

2
Miguel Bessa

Essayez d’exécuter avec un proxy si vous êtes derrière un . Accédez au chemin d’installation de elasticsearch.

Dans mon cas>/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

Vous pouvez essayer d'installer manuellement. Voici les étapes -

  1. téléchargez-le ici - https://download.elasticsearch.org/elasticsearch/marvel/marvel-latest.Zip
  2. Placez-le sur votre serveur. 
  3. cd Path/To/elasticsearch-1.x.x
  4. bin/plugin -i marvel -u fichier: ///Path/where/you/placed/marvel-latest.Zip
  5. Redémarrez votre recherche élastique.
  6. Allez sur n’importe quel navigateur et écrivez http: // n’importe quel serveur dans le cluster: 9200/_plugin/marvel/
0
kumarhimanshu449