使用 CouchDB 进行单向复制
我在生产服务器上运行 CouchDB,并且我想定期将其复制到我的开发服务器(在我家的另一台机器上运行)。那么安全地做到这一点的最简单方法是什么?
I run CouchDB on my production server, and I want to periodically replicate it to my development server (running on another machine, at my home). So what's the easiest way to do it securely ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不相信复制可以通过 HTTPS 进行,至少现在还不能。 (我相信该功能随 v1.1 一起提供)
如果您需要它的安全(即通过线路加密),您可能应该使用 ssh/scp 定期将数据库文件复制到开发服务器。
I don't believe Replication can occur over HTTPS, at least not yet. (I believe that feature is coming with v1.1)
If you need it to be secure (ie. encrypted over the wire) you should probably use ssh/scp to periodically copy your database files to your development server.