curl: (3) [globbing] bad range specification in column 3

荒凉一梦 提交于 2019-12-12 03:38:35

问题


Im trying to index a simple json data in solr using curl. When i use the command, it says

"curl -X POST -H 'Content-Type:application/json'-d http://localhost:8983/solr/informationretrieval/update/json/docs '[{"id":"1","title":"Doc 1"},{"id":"2","title":"Doc 2"}]'
{"responseHeader":{"status":0,"QTime":1}}
curl: (3) [globbing] bad range specification in column 3"

I have tried removing quotes, tried -g and --globoff etc but every time there are errors like illegal port number. Can anyone please help?


回答1:


Adding Multiple JSON Documents

curl -X POST -H 'Content-Type: application/json' 'http://localhost:8983/solr/informationretrieval/update' --data-binary '
    [
      {
        "id": "1",
        "title": "Doc 1"
      },
      {
        "id": "2",
        "title": "Doc 2"
      }
    ]'


来源:https://stackoverflow.com/questions/42926835/curl-3-globbing-bad-range-specification-in-column-3

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!