ibdata1文件会被覆盖吗

发布于 2024-11-30 15:12:38 字数 104 浏览 0 评论 0原文

我需要检查是否将 innodb 从 2 个服务器 A 和 B 复制到服务器 C 的 /var/lib/mysql 。 那么 idbata1 文件会发生什么情况呢?将被覆盖或附加到服务器 C 上。

I need to check If I copy my innodb from 2 servers A and B to /var/lib/mysql of Server C.
Then what will happen to idbata1 file. Will be overwritten or it will be appended on Server C.

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

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

发布评论

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

评论(1

橘和柠 2024-12-07 15:12:38

该文件包含实际数据,无法直接合并。

首先,我建议查看以下选项:

[mysqld]
innodb_file_per_table=1

在您的 my.cnf 中。其次,我会考虑使用 mysqldump 将数据从另外两个服务器之一获取到服务器 C(复制第一个服务器的文件后)。

That file contains the actual data, and cannot be directly merged.

First, I recommend looking into the option:

[mysqld]
innodb_file_per_table=1

In your my.cnf. Second, I'd consider using mysqldump to get the data into server C from one of the two other servers (after copying the files of the first one).

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