Changing Elasticsearch from Localhost to IP on Windows

After installing Elasticsearch, Kibana, logstash to my windows 7 local machine, everything was perfect however, when I want to change the address from “localhost” to “192.168.1.100” I faced a problem so I made the below changes to the yml files (‘Elaasticsearch’,’Kibana’) as follow:

C:\Elasticsearch\config\elasticsearch.yml

.
.
Added this line
network.host: 0.0.0.0

C:\kibana\config\kibana.yml
.
.

network.bind_host: 0
network.host: 0.0.0.0
server.host: "192.168.1.100"

Make sure you close the old session , by closing the browser and luncing a new one with the IP address.

Related Issue.

Regards,
Mahmood

Make sure your Host IP should be in Hosts file.If not , make an entry for Ip as well

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.