加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

mySQL Replication:主数据库名称是否必须与从属数据库名称相同

发布时间:2020-12-11 23:42:35 所属栏目:MySql教程 来源:网络整理
导读:我已将主数据库名称设置为MDB在Slave服务器中我设置为replicate-do-db = SDB replicate-rewrite-db 选项: --replicate-rewrite-db=from_name-to_name Tells the slave to translate the default database (that is,the one selected by USE) to to_name if

我已将主数据库名称设置为MDB&在Slave服务器中我设置为replicate-do-db = SDB< - 这不起作用?但是,当我将其设置为相同的DB名称时,它可以工作.是否有任何解决方案来设置1个主数据库与2个不同的从属但在同一服务器? 最佳答案 您需要指定replicate-rewrite-db选项:

--replicate-rewrite-db=from_name->to_name

Tells the slave to translate the default database (that is,the one
selected by USE) to to_name if it was from_name on the master. Only
statements involving tables are affected (not statements such as
CREATE DATABASE,DROP DATABASE,and ALTER DATABASE),and only if
from_name is the default database on the master. This does not work
for cross-database updates. To specify multiple rewrites,use this
option multiple times. The server uses the first one with a from_name
value that matches. The database name translation is done before the
–replicate-* rules are tested.

如果您只复制某些数据库,则需要指定replicate-do-db.请注意,此参数是replicate-rewrite-db应用重命名操作后的数据库名称:

--replicate-do-db=db_name

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读