跟着文檔學ES命令

Health Check

curl -XGET  localhost:9200/_cat/health?v&pretty

green:集羣功能是fully functional的。node

yellow:數據都是可用的,可是一些複製可能沒有被分配,可是集羣功能是fully functional的。json

red:一些數據是不可用的。但此時集羣仍然是可用的,只是須要去修復丟失的數據了。app

查看節點列表

curl -XGET localhost:9200/_cat/nodes?v&pretty

查看索引列表

curl -XGET localhost:9200/_cat/indices?v&pretty

建立索引

curl -XPUT localhost:9200/customer?pretty&pretty
curl -XGET localhost:9200/_cat/indices?v&pretty

索引查詢一個文檔

curl -XPUT  localhost:9200/customer/external/1?  -H 'Content-Type: application/json' -d'
{
  "name": "John Doe"
}

待續。。。curl

相關文章
相關標籤/搜索