0

I have installed ElasticSearch 1.7 and want to install marvel, bellow command to install licence worked.

sudo bin/plugin --install mobz/elasticsearch-head --verbose

But installing marvel itself failed:

vagrant@homestead:/usr/share/elasticsearch$ sudo bin/plugin install marvel-agent
-> Installing marvel-agent...
Trying https://github.com/null/marvel-agent/archive/master.zip...
Failed to install marvel-agent, reason: failed to download out of all possible locations..., use --verbose to get detailed information

How to solve this ? with --verbose this occurred vagrant@homestead:/usr/share/elasticsearch$ sudo bin/plugin install marvel-agent --verbose -> Installing marvel-agent... Trying https://github.com/null/marvel-agent/archive/master.zip... Failed: IOException[Can't get https://github.com/null/marvel-agent/archive/master.zip to /usr/share/elasticsearch/plugins/marvel-agent.zip]; nested: FileNotFoundException[https://github.com/null/marvel-agent/archive/master.zip]; nested: FileNotFoundException[https://github.com/null/marvel-agent/archive/master.zip]; Failed to install marvel-agent, reason: failed to download out of all possible locations..., use --verbose to get detailed information

jones
  • 1,423
  • 3
  • 35
  • 76

1 Answers1

2

For Elasticsearch 1.7, the correct command is different than for 2.x:

bin/plugin -i elasticsearch/marvel/latest
Andrei Stefan
  • 51,654
  • 6
  • 98
  • 89