Hi
I am using ElasticSearch 5.5.x, now when I don't make changes in elasticsearch.yml and start it. It runs fine.
And I am able to access using curl http://localhost:9200 with no issue
However if I change network.host to ipaddress of my local machine, it is not able to start and connect.
IP Address of my linux instance is 10.193.164.191
And in elasticsearch.yml
I set network.host to 10.193.164,191, and I start the elasticsearch, shows failed status.
This is the entry
network.host: 10.193.164.191
now if I try accessing using
curl http://10.193.164.191 :9200 it gives an error, not able to connect.
What is the issue