我正在尝试通过运行
curl http://localhost:9200/
来测试 Elasticsearch 是否正在运行
我收到错误:
curl : Unable to connect to the remote server
我搜索过类似的已发布问题,但解决方案对我不起作用。建议的解决方案是将
network.host
中的 http.host
和 elasticsearch.yml
设置为 0.0.0.0
。我已经尝试过了,但仍然遇到这个问题。
这是如何在我的
elasticsearch.yml
上设置参数
network.host: 0.0.0.0
http.host: 0.0.0.0
http.port: 9200
transport.host: 0.0.0.0
我还应该尝试什么其他方法?
我能够通过将 Elasticsearch 作为服务启动来解决这个问题
elasticsearch-service.bat start