本文介绍了如何在 Elasticsearch 2.0 中启用远程访问/请求?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
从 v2.0 开始,Elasticsearch 默认仅在 localhost 上侦听,但我想在 localhost 之外发出请求.
Starting from v2.0 Elasticsearch is listening only on localhost by default, but I'd like to make request outside localhost.
例如,允许这样的请求:
For example, a request like this is allowed:
http://localhost:9200/
但这不是:
http://server_name:9200/
(来自服务器外部,例如:同一局域网中的本地计算机).
http://server_name:9200/
(from outside of the server, eg: a local computer in the same LAN).
感谢您的帮助.
推荐答案
在 config/elasticsearch.yml
中放入
network.host: 0.0.0.0
这篇关于如何在 Elasticsearch 2.0 中启用远程访问/请求?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!