Could not resolve host: 'localhost 報錯解決辦法

kewlgrl發表於2018-01-14
Could not resolve host: 'localhost

是我在命令列中使用Curl往Kiabna中匯入資料時報的錯誤。

首先,在Windows中curl命令後面用雙引號;

其次,需要加-H "Content-Type: application/x-ndjson"

例如,原來的匯入程式碼是:

curl -XPOST 'localhost:9200/bank/account/_bulk?pretty' --data-binary @accounts.json 

則改成:

curl -H "Content-Type: application/x-ndjson" -XPOST "localhost:9200/bank/account/_bulk?pretty" --data-binary @accounts.json


相關文章