通过shell 操作es 不能put数据

收藏
ELK安装 elasticsearch
5
Feb 1, 2018

通过shell 操作es 不能put数据

回答

般若回答

问题分析: 写入格式问题
解决方案:
curl -XPUT 'http://172.16.0.14:9200/store/books/1' -d '{
  "title": "Elasticsearch: The Definitive Guide",
  "name" : {
    "first" : "Zachary",
    "last" : "Tong"
  },
  "publish_date":"2015-02-06",
  "price":"49.99"
}'

 

(0)

提交成功