将表添加到现有的 mysql 复制?
我已经设置了现有的 mysql 复制(Windows 2008 到 Ubuntu 9.04),并在 master 数据库中创建了几个新表。 这些没有显示在从属数据库中。
新表是否会自动复制到从属数据库,还是需要再次设置复制?
谢谢!
I have an existing mysql replication set up (Windows 2008 to Ubuntu 9.04) and created several new tables in the master database. These are not showing up in the slave database.
Do new tables automatically get copied to the slave DB, or do I need to set up replication again?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设其他数据正在成功复制。
mysql 中的复制是针对每个服务器的,因此最可能的问题是您没有对事件进行二进制日志记录,或者从服务器忽略它们。
对于 binglog,请验证您没有关闭连接的 sql_log_bin (这需要 SUPER)以及各种选项 binary-log 选项设置正确。 您可以通过在服务器的 binlog 上运行 mysqlbinlog 来验证这一点。
在从属端,检查复制选项。
I'm going to assume that other data is successfully replicating.
Replication in mysql is per-server, so the most likely problems are that either you aren't binloging the events, or that the slave is ignoring them.
For binglogs, verify you aren't turning sql_log_bin off for the connection (which would require SUPER) and that the various options binary-log options are set correctly. You can verify this by running
mysqlbinlog
on the server's binlogs.On the slave side, check the replication options.