@xiaoxiaowang
2017-06-16T02:23:10.000000Z
字数 372
阅读 1071
未分类
在此输入正文
curl 'localhost:9200/_cat/health?v'
curl 'localhost:9200/_cat/nodes?v'
curl 'localhost:9200/_cat/indices?v'
curl -XPUT 'localhost:9200/customer?pretty'
curl -XDELETE 'localhost:9200/customer?pretty'
curl -X<REST Verb> <Node>:<Port>/<Index>/<Type>/<ID>
<REST Verb>:REST风格的语法谓词
<Node>:节点ip
<port>:节点端口号,默认9200
<Index>:索引名
<Type>:索引类型
<ID>:操作对象的ID号