Benjamin RD
Benjamin RD

Reputation: 12034

Elastic search on AWS site can’t be reached

I have elastic search running on my AWS Server, I follow this tutorial: And, when I execute this on my server:

$ curl localhost:9200/_cluster/health?pretty

And returns the correct results.

But, when I use the complete IP provider by Amazon, I get the error:

This site can’t be reached

52.33.201.250 refused to connect.

Also, my configuration is: enter image description here

What other thing I need do to configure it?

Upvotes: 2

Views: 1567

Answers (1)

Leonardo Cabré
Leonardo Cabré

Reputation: 1225

You can try this:

In your "/etc/elasticsearch/elasticsearch.yml"

Set your public or private ip according to your needs: network.host: your_ip

Upvotes: 1

Related Questions