我在 ec2 上运行着一个健康的 ES 集群。我尝试使用单播将 Graylog 服务器连接到集群,但 Graylog 从单播主机收到一个空响应。使用 curl,我可以重现这个空响应。
curl 10.10.198.233:9200/_cluster/health?pretty=true 的结果
是
"cluster_name" : "graylog-graylog-elasticsearch-scratch-Scratch-client-0otqGLpa",
"status" : "green",
"timed_out" : false,
"number_of_nodes" : 3,
"number_of_data_nodes" : 3,
"active_primary_shards" : 1,
"active_shards" : 2,
"relocating_shards" : 0,
"initializing_shards" : 0,
"unassigned_shards" : 0,
"number_of_pending_tasks" : 0
}
curl 10.10.198.233:9300 的结果
给出 curl: (52) 服务器回复为空
这导致 Graylog 服务器在启动时失败。如何修复 Elasticsearch 节点给出的空响应?