Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install plugin/head for elastic search?

Tags:

I have installed elastic search and its plugin head but when i enter the

 **url  "localhost:9200/_plugin/head/"** 

It does not shows any thing?

And I have also install marvel/SENSE for monitoring purpose. I have installed plugin/head using

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

But its also not working . Error: console not found on url http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/sense_widget.html?snippets/010_Intro/10_Info.json

BTW I am new to elastic search. So if you could tell me why it is not showing anything or have i made any mistake.

Thank in advance!

like image 634
deepak Avatar asked Jul 31 '14 09:07

deepak


People also ask

What is Elasticsearch head plugin?

Elasticsearch head is a data visualization plugin that provides an attractive interface to the elasticsearch users. It allows us to perform CRUD operations on data. It is a visualization tool used as Elasticsearch plugin. It is also available as an extension in chrome web store.

How do I know if Elasticsearch plugins are installed?

You can also check which plugins are installed by looking into plugins directory in elastic installation directory.

How do I update Elasticsearch plugins?

There is no way to update an existing plugin. You need to delete the old version and install the new one.


1 Answers

If someone tries with version 5 or else:

  • for Elasticsearch 5.x: plugins are not supported. Run elasticsearch-head as a standalone

  • for Elasticsearch 2.x – 4.x: sudo elasticsearch/bin/plugin install mobz/elasticsearch-head

  • for Elasticsearch 1.x: sudo elasticsearch/bin/plugin -install mobz/elasticsearch-head/1.x
  • for Elasticsearch 0.9: sudo elasticsearch/bin/plugin -install mobz/elasticsearch-head/0.9

From GitHub

like image 136
Nimitack Avatar answered Oct 10 '22 05:10

Nimitack