Check elasticsearch running on web like on windows

in windows, elasticsearch frontend can be acces using http://localhost:9200 how about if I installed it unto my server, how can I check the elasticsearch frontend if its working, should it be https://domain.com:9200?

Kind of... Exposing Elasticsearch to the internet means anyone could add, remove, change, or find and look at your documents. So by default, in order to protect you and your data, Elasticsearch binds just to localhost. and prevents access from the Internet. Have a look at https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-network.html#common-network-settings for the settings if you need, but to reiterate the warning on that page: you should never expose Elasticsearch directly to the Internet for these reasons.

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