我正在使用docker在单节点中运行elasticsearch进行开发。 它在Ubuntu上运行良好,但在OSX上出了问题。
以下是我如何运行ES。
docker run --rm --name es \
-p 9200:9200 -p 9300:9300 \
-e "discovery.type=single-node" \
-e "xpack.security.enabled=false" \
docker.elastic.co/elasticsearch/elasticsearch:5.5.1
当我使用curl查看它是否有效时
curl 127.0.0.1:9200/_health?pretty
{
"error" : {
"root_cause" : [
{
"type" : "illegal_argument_exception",
"reason" : "No endpoint or operation is available at [_health]"
}
],
"type" : "illegal_argument_exception",
"reason" : "No endpoint or operation is available at [_health]"
},
"status" : 400
}
这只发生在OSX上。
答案 0 :(得分:0)
正如@Alex所说,我错过了一个_cluter。
curl 127.0.0.1:9200/_cluster/health?pretty