_cat / indices给出_all not found

时间:2018-03-10 01:44:14

标签: elasticsearch

ES版本:2.4.1

我获得了Elasticsearch集群的用户名和密码(在elastic.co上托管)。我跑的时候:

GET /_cat/indices?v

它返回:

{
  "error": {
    "root_cause": [
      {
        "type": "index_not_found_exception",
        "reason": "no such index",
        "index": "_all"
      }
    ],
    "type": "index_not_found_exception",
    "reason": "no such index",
    "index": "_all"
  },
  "status": 404
}

是因为我分配了用户角色吗?

更新:

我尝试了list all indexes on ElasticSearch server?的答案中提到的所有端点,而且这个端点有效:

GET /_cluster/health?level=indices

但我不知道为什么其他查询无法正常工作。

0 个答案:

没有答案