无法在Windows上的Elasticsearch上使用_bulk API



我是windows的新手。我一直在linux上工作。有人能在这里帮我做_bulk api索引吗

C: \ELK\master-1\elasticsearch\sample_data>curl-k-H"内容类型:application/x-ndjson"-x POST"https://localhost:9200/bank/_bluk?pretty'-d@accounts.jsoncurl:(6(无法解析主机:应用程序curl:(3(URL使用错误/非法格式或缺少URL

我看到你键入了&quot_bluk";instad of"_"散装",您还必须使用--data二进制标志,而不是d:

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

文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html#bulk-卷曲

相关内容

  • 没有找到相关文章

最新更新