从 VPS 主机迁移到 EC2,尽可能减少停机时间

发布于 2024-12-03 11:21:13 字数 205 浏览 1 评论 0原文

我们有相当大的服务器堆栈(超过 30 台机器),我们无法继续使用当前的 VPS 提供商。我们必须搬家,亚马逊的 EC2 似乎就是我们的解决方案。

我们使用rails、mysql、mongo、redis 和其他东西,我们需要在尽可能少的停机时间和不丢失数据的情况下移动这些东西。

这里有人做过这样的任务吗?有人知道如何做到这一点吗?

We have a rather large server stack (more than 30 machines), and we can't go on using our current VPS provider. we must move, and Amazon's EC2 seems to be our solution.

We use rails, mysql, mongo, redis and other stuff, and we need to move these with as little downtime and with no data loss.

Has anyone here done such a task? anyone with tips on how to do that?

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

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

发布评论

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

评论(1

阳光的暖冬 2024-12-10 11:21:13

首先,MySQL和MongoDB支持写/读复制,在当前环境中写入,在新机器上读取从属。
其次,rails中的代码没有改变,您可以在新节点上运行应用程序并首先在旧节点上使用DB,然后顺利地将DB切换到新节点。

First, MySQL and MongoDB is suppout for write/read replication, write at the current environment and read slave at the new box.
Secondly, code in rails is not changed, you may run apps at new node and use DB at the old one firstly and switch DB to new box smoothly.

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