将 CouchDB 数据从远程服务器复制到本地计算机
我最近开始使用 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"}
谁能启发我?
此致。
I've recently started playing with CouchDB and just into some small issues.
I am trying to replicate data from a aremote server to my remote computer using
the following command:
curl -X POST -d '{"source":"http://xxx.xxx.xx.xxx:5984/testing_replicate","target":"http://localhost:5984:testing_replicate"}' http://localhost:5984/_replicate
Somehow there is no response from this command.
Doing curl -X GET http://localhost:5984/
and
curl -X GET http://xxx.xxx.xx.xxx:5984/
returns the expected response : {"couchdb":"Welcome","version":"0.10.0"}
can anyone enlighten me?
Best Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的目标网址有问题。更改:
至
There's a goof in your target URL. Change:
to