将 CouchDB 数据从远程服务器复制到本地计算机

发布于 2024-10-11 06:21:33 字数 565 浏览 2 评论 0原文

我最近开始使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初吻给了烟 2024-10-18 06:21:33

您的目标网址有问题。更改:

... "target":"http://localhost:5984:testing_replicate" ...
                                   ^

... "target":"http://localhost:5984/testing_replicate" ...
                                   ^

There's a goof in your target URL. Change:

... "target":"http://localhost:5984:testing_replicate" ...
                                   ^

to

... "target":"http://localhost:5984/testing_replicate" ...
                                   ^
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文