我尝试使用this教程配置ElasticSearch
除了教程的第4步,我做了所有事情。
在步骤5中,当我运行此命令时:
curl -X GET 'http://localhost:9200'
我收到此错误:
curl: (7) Failed connect to localhost:9200; Connection refused
我尝试了两种不同的方法来修复错误:
network.bind_host:0.0.0.0
网络: 主持人:192.168.2.229
但都没有解决问题。
如何测试Elasticsearch并解决此错误?
感谢。
答案 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