Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remote GUI client for elastic search [closed]

I have searched enough on the web but did not find the solution.

Is there a remote GUI client for Elastic Search server just like Oracle SQL Developer in order to see the schema & other details of the remote elastic db.

Currently I am using the elastic head plugin

enter image description here

It doesn't let me connect to the remote elastic cluster. It only works if the elastic server is hosted in the same machine. I also added the below entries to elastic.yml file but doesn't works. Says no connection to the remote host.

#http.cors.enable: true
#http.cors.allow-origin: "remotehosturl:9200"
like image 230
underdog Avatar asked Nov 13 '15 07:11

underdog


People also ask

How do I access Elasticsearch remotely?

To access the Elasticsearch server from another computer or application, make the following changes to the node's /opt/bitnami/elasticsearch/config/elasticsearch. yml file: network. host: Specify the hostname or IP address where the server will be accessible.

How do I turn off Elasticsearch security?

A more permanent option is to remove the security plugin entirely. Delete the plugins/opendistro_security folder on all nodes, and delete the opendistro_security configuration entries from elasticsearch.

Is there a GUI for Elasticsearch?

GUI for ElasticSearch. ElasticSearch itself does not have a Graphical User Interface to communicate with the cluster. Kaizen is our solution for ElasticSearch GUI for Windows, Mac and Linux written in JavaFX as a cross-platform desktop application. * Kaizen does not require any installation privileges.


1 Answers

You need to remove the # character in front your two lines, as that comments out the line and thus has no effect.

Also the correct settings for CORS is named http.cors.enabled not http.cors.enable

So you should include these two lines:

http.cors.enabled: true
http.cors.allow-origin: "remotehosturl:9200"

Also you have the choice with other plugins, such as Marvel, Kopf or the Sense Chrome plugin (soon available as a Kibana-powered standalone tool)

like image 130
Val Avatar answered Oct 04 '22 01:10

Val