在主-主设置中,我需要编辑哪些命令或文件才能使其自动递增 2?

发布于 2024-08-18 13:23:40 字数 48 浏览 4 评论 0原文

一台服务器增量 1, 3, 5。

另一台服务器增量 2, 4, 6

One server increment 1, 3, 5.

The other server increment 2, 4, 6

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

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

发布评论

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

评论(1

木格 2024-08-25 13:23:40

基于这个富有洞察力的教程: http://www.howtoforge.com/mysql_master_master_replication#comment-12927< /a>

通过将以下内容添加到 [mysqld] 下的 my.cnf 中,使 Master 1 仅自动递增奇数: 通过

auto_increment_increment= 2
auto_increment_offset   = 1

将以下内容添加到 [mysqld] 下的 my.cnf 中,使 Master 2 仅自动递增偶数:

auto_increment_increment= 2
auto_increment_offset   = 2

Based on this insightful tutorial: http://www.howtoforge.com/mysql_master_master_replication#comment-12927

Make Master 1 only auto-increment odd numbers by adding this to my.cnf under [mysqld]:

auto_increment_increment= 2
auto_increment_offset   = 1

Make Master 2 only auto-increment even numbers by adding this to my.cnf under [mysqld]:

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