September 2018
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930

Categories

September 2018
M T W T F S S
 12
3456789
10111213141516
17181920212223
24252627282930

ELASTICSEARCH: LISTEN ALL NETWORK INTERFACES ON CENTOS 7

ELASTICSEARCH: LISTEN ALL NETWORK INTERFACES ON CENTOS 7

 

 

y default elasticsearch listens to localhost.

# netstat -na|grep LISTEN |grep 9200 tcp6 0 0 127.0.0.1:9200 :::* LISTEN tcp6 0 0 ::1:9200 :::* LISTEN

If you want to access over the network you need to edit network.host parameter /etc/elasticsearch/elasticsearch.yml file

———————————- Network ———————————– # […]