将表添加到现有的 mysql 复制?

发布于 2024-07-23 20:23:26 字数 145 浏览 5 评论 0原文

我已经设置了现有的 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 技术交流群。

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

发布评论

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

评论(1

归途 2024-07-30 20:23:26

我假设其他数据正在成功复制。

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.

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