How do I enable remote access/request in Elasticsearch 2.0?

前端 未结 12 765
醉酒成梦
醉酒成梦 2020-12-22 22:09

Starting from v2.0 Elasticsearch is listening only on localhost by default, but I\'d like to make request outside localhost.

For example, a request like this is allo

12条回答
  •  时光取名叫无心
    2020-12-22 23:09

    Apart from setting network.host : 0.0.0.0

    there might be need to set following params

    node.name: elasticsearch-node-1
    
    cluster.initial_master_nodes: ["elasticsearch-node-1"]
    

    All setting go in elasticsearch/elasticsearch.yml

提交回复
热议问题