windows下安装 crul 以及windows下使用的注意事项

主要记录在windows下安装 crul 以及windows下使用的注意事项.

1. curl 下载:
http://www.paehl.com/open_source/?CURL_7.49.1

2. curl windows 下可视化工具下载
http://www.paehl.com/open_source/?CURL_7.49.1 ___GUI_for_CURL_0.1

如果是linux 下, 可以用类似的命令增加一条索引.
程序代码 程序代码

curl -XPUT 'localhost:9200/mycompany/employee/1' -d '{"first_name":"John","last_name":"Smith","age":25,"about":"Ilovetogorockclimbing","interests":["sports","music"]}'

windows下,要这样做,注意引号. 否则会报错:

{"error":{"root_cause":[{"type":"mapper_parsing_exception","reason":"failed to parse"}],"type":"mapper_parsing_exception","reason":"failed to parse","caused_by":{"type":"not_x_content_exception","reason":"Compressor detection can only be called on some xcontent bytes or compressed xcontent bytes"}},"status":400}
windows 正确的做法:
程序代码 程序代码

curl -XPUT "localhost:9200/mycompany/employee/1" -d "{"""first_name""":"""John""","""last_name""":"""Smith""","""age""":25,"""about""":"""Ilovetogorockclimbing""","""interests""":["""sports""","""music"""]}"

程序代码 程序代码

curl -XPUT "localhost:9200/mycompany/employee/2" -d "{"""first_name""":"""Jane""","""last_name""":"""Smith""","""age""":32,"""about""":"""Iliketocollectrockalbums""","""interests""":["""music"""]}"

程序代码 程序代码

curl -XPUT "localhost:9200/mycompany/employee/3" -d "{"""first_name""":"""Douglas""","""last_name""":"""Fir""","""age""":35,"""about""":"""Iliketobuildcabinets""","""interests""":["""forestry"""]}"

尝试得到一个索引:
curl -XGET "localhost:9200/mycompany/employee/1"

返回如下内容:
{"_index":"mycompany","_type":"employee","_id":"1","_version":1,"found":true,"_source":{"first_name":"John","last_name":"Smith","age":25,"about":"Ilovetogorockclimbing","interests":["sports","music"]}}

Java client 操作时一定要先修改配置文件:
network.host: 192.168.10.29 或者修改为  0.0.0.0
这里是你机器的IP 地址,不要用localhost 或者  127.0.0.1, 否则很容易报错:

NoNodeAvailableException[None of the configured nodes are available



原文地址:http://www.yihaomen.com/article/java/630.htm

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值