索引API 查看索引分布情况 curl http://es:9200/_cat/shards?pretty 查看所有索引 curl -XGET http://es:9200/_cat/indices?pretty 删除指定索引 curl -XDELETE http://es:9200/IndexName 索引配置信息 curl -XGET http://es:9200/IndexName/_settings?pretty 取消所有索引只读模式 curl -XPUT -H "Content-type: application/json" http://es:9200/_settings -d '{ "index.blocks.read_only_allow_delete":"false" }' 索引重命名 curl -XPOST -H