ibdata1文件会被覆盖吗
我需要检查是否将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该文件包含实际数据,无法直接合并。
首先,我建议查看以下选项:
在您的 my.cnf 中。其次,我会考虑使用 mysqldump 将数据从另外两个服务器之一获取到服务器 C(复制第一个服务器的文件后)。
That file contains the actual data, and cannot be directly merged.
First, I recommend looking into the option:
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).