ElasticSearch安装错误 - 卷曲:(7)连接到localhost失败:9200;拒绝连接

时间:2016-04-14 18:51:26

标签: elasticsearch centos spring-data-elasticsearch

我尝试使用this教程配置ElasticSearch

除了教程的第4步,我做了所有事情。

在步骤5中,当我运行此命令时:

curl -X GET 'http://localhost:9200'

我收到此错误:

curl: (7) Failed connect to localhost:9200; Connection refused

我尝试了两种不同的方法来修复错误:

  1. network.bind_host:0.0.0.0

  2. 网络: 主持人:192.168.2.229

  3. 但都没有解决问题。

    如何测试Elasticsearch并解决此错误?

    感谢。

2 个答案:

答案 0 :(得分:2)

您只需在弹性搜索配置文件中取消注释这些行:

cluster.name: your_cluster_name 
node.name: "Your Node Name"
network.bind_host: localhost
network.publish_host: 0.0.0.0
network.host: 0.0.0.0

答案 1 :(得分:-2)

运行此命令。

curl -X GET http://localhost:9200