如何将数据从一个MySQL数据库自动传输到另一个MySQL数据库?

发布于 2024-11-03 06:51:22 字数 150 浏览 1 评论 0原文

我有两个 MySQL 数据库,它们位于不同的机器上。 我想自动将数据从一台服务器传输到另一台服务器。 假设我希望每天早上 4:00 进行数据传输。

能做到吗? MySQL 有没有内置的功能可以让我们做到这一点?

我想从某些特定表而不是整个数据库传输数据。

I have two MySQL Database which are in different machines.
I want to transfer data from one Server to another automatically.
Lets say, I want my data transfer to happen each day morning 4:00.

Can it be done? Is there any MySQL built in feature by which we can do it?

I want to transfer data from some specific tables not from the whole DB.

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

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

发布评论

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

评论(2

过度放纵 2024-11-10 06:51:22

如果您想要由 MySQL 处理的自动化解决方案,那么您需要的就是复制。由于该主题很广泛并且在 MySQL 手册中进行了详细介绍,因此我建议您坐下来阅读 文档介绍了该主题。

If you want automated solution handled by MySQL, then it's replication what you need. Since the topic is broad and covered in detail in MySQL manual, I suggest you sit down and read what the documentation says on the topic.

还给你自由 2024-11-10 06:51:22

mysqldump -uuser -ppass your_db your_table1 > to_sql

然后使用 crontab 运行

mysql -uroot -ppass -hhost <到_sql

mysqldump -uuser -ppass your_db your_table1 > to_sql

and then use crontab run

mysql -uroot -ppass -hhost < to_sql

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