如何同步我的 www 文件黑白服务器?

发布于 2024-09-02 09:36:17 字数 34 浏览 4 评论 0原文

我想在所有网络服务器之间同步我的数据。这怎么能做到呢?

I want to sync my data b/w all my web servers. How can this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

£冰雨忧蓝° 2024-09-09 09:36:17

Rsync 是一种同步文件的简单方法。它最初是针对 Unix 的,但在 Windows 下也运行得很好。它仅传输文件中已更改的部分。

对于数据库来说,它变得更加复杂,如果需要,您应该查找复制。

Rsync is an easy way to synchronize files. It is originally for Unix, but it also runs quite well under Windows. It only transfers the parts of files that changed.

For databases it gets much more complicated, you should look up replication if you need that.

岁吢 2024-09-09 09:36:17

rsync 的 Windows 版本称为 cwRsync,并且运行良好。但是它不处理 Windows 上的权限。因此接收端的所有文件都会继承默认权限。

如果所有系统都位于快速、低延迟的网络上,robocopy 就足够了。

如果它们位于同一 Windows Active Directory 域中,则使用内置 DFS 复制可能是最佳选择。

The windows verion of rsync is called cwRsync, and works well. However it does not handle permissions on Windows. So all of the files at the receiving end inherit default permissions.

If all systems are on a fast, low-latency network, robocopy will suffice.

If they are in the same Windows active directory domain, using the built-in DFS replication is likely best.

梦途 2024-09-09 09:36:17

使用 Microsoft Web Deploy 可能是复制服务器内容、权限、注册表设置、COM 对象、GAC 组件等的最强大的解决方案之一。
http://www.iis.net/download/webdeploy

您可以进行实时同步(即两台实时服务器)或生成包以便可以离线应用、将服务器从 iis 6 迁移到 7、比较两台服务器、发现依赖关系、同步数据库(SQL Server 和 MySQL)、仅同步一个站点或多个站点等

。还包含在 Visual Studio 2010 中,用于生成可通过 HTTPS 轻松远程部署的 Web 应用程序包,而无需成为管理员。

Using Microsoft Web Deploy is probably one of the most powerful solutions to replicate server content, permissions, registry settings, COM objects, GAC components, and more.
http://www.iis.net/download/webdeploy

You can do live sync's (ie two live servers) or generate packages so that they can be applied offline, migrate servers from iis 6 to 7, compare two servers, discover dependencies, sync databases (SQL Server and MySQL), only sync one site, or many, etc.

It is also included inside Visual Studio 2010 to generate Web application packages that can be easily deployed remotely over HTTPS without the need of being administrator.

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