如何将数据从一个MySQL数据库自动传输到另一个MySQL数据库?
我有两个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想要由 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.
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