ElasticSearch: Allow only local requests

前端 未结 3 604
我在风中等你
我在风中等你 2020-12-23 09:36

How can allow only local requests for elasticsearch? So command like:

curl -XGET \'http://localhost:9200/twitter/_settings\'

can only be r

相关标签:
3条回答
  • 2020-12-23 10:12

    If your final goal is to deny any requests from outside the host machine, the most reliable way would be to modify the host's iptables so that it denies any incoming requests to the service ports used by ElasticSearch (9200-9300).

    If the end goal is to make sure that everyone refers to the service using an exclusive DNS, you're better off achieving this with an HTTP server that can proxy requests such as HTTPd or nginx.

    0 讨论(0)
  • 2020-12-23 10:28

    I use this parameter:

    http.host: "127.0.0.1"

    This parameter not accept http requests for external request.

    0 讨论(0)
  • 2020-12-23 10:30

    For elasticsearch prior to v2.0.0, if you want both http transport and internal elasticsearch transport to listen only on localhost simply add the following line to elasticsearch.yml file.

    network.host: "127.0.0.1"
    

    If you want only http transport to listen on localhost add the following line instead.

    http.host: "127.0.0.1"
    

    Starting from v2.0 elasticsearch is listening only on localhost by default. So, no additional configuration is needed.

    0 讨论(0)
提交回复
热议问题