I'm trying to configure ElasticSearch with this tutorial
I did everything except step 4 of the tutorial.
In step 5, when I run this command:
curl -X GET 'http://localhost:9200'
I get this error:
curl: (7) Failed connect to localhost:9200; Connection refused
I have tried two different things to fix the error:
network.bind_host: 0.0.0.0
network : host : 192.168.2.229
But neither solved the problem.
What should I do to test Elasticsearch and solve this error?
Thanks.
You just have to uncomment these lines in your elastic-search configuration file:
cluster.name: your_cluster_name
node.name: "Your Node Name"
network.bind_host: localhost
network.publish_host: 0.0.0.0
network.host: 0.0.0.0
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With