我最近开始玩 CouchDB 并且只是解决了一些小问题。
我正在尝试使用以下命令将数据从远程服务器复制到我的远程计算机:
curl -X POST -d '{"source":"http://xxx.xxx.xx.xxx:5984/testing_replicate","target":"http://localhost:5984:testing_replicate"}' http://localhost:5984/_replicate
不知何故,此命令没有响应。
做
和curl -X GET http://localhost:5984/
curl -X GET http://xxx.xxx.xx.xxx:5984/
返回预期的响应:{"couchdb":"Welcome","version":"0.10.0"}
谁能启发我?
此致。