我无法在两台 couchdb 服务器之间复制,所以我想从一台服务器转储到文件并从文件加载到另一台服务器。
我用这个语句转储,它工作正常:
curl -X GET http://localhost:5984/<DATABASE_NAME>/_all_docs?include_docs=true > FILE.txt
但是当我使用这个语句加载时:
curl -d @FILE.txt -H “Content-Type: application/json” -X POST http://localhost:5984/<DATABASE_NAME>/_bulk_docs
它失败了:
curl: (6) Could not resolve host: application; Host not found {"error":"bad_content_type","reason":"Content-Type must be application/json"}
有任何想法吗?