mysql主从同步

主从同步的mysql介绍网上很多。也没啥说得。主要记录一下公司的需求。

跨库跨表的同步:
replicate-wild-do-table =test%.%(两个%都很重要,我原来只写前面一个,启动mysql的时候会报错,同步以test打头的库名下的所有表)

多库的同步:
replicate-do-db = db1
replicate-do-db = src1

上述写法正确。

比较重要的命令。show slave status\G;      
      Relay_Master_Log_File: masterdb-bin.000009
           Slave_IO_Running: Yes
          Slave_SQL_Running: Yes
            Replicate_Do_DB: db1,src1
        Replicate_Ignore_DB:
         Replicate_Do_Table:
     Replicate_Ignore_Table:
    Replicate_Wild_Do_Table: test%.%
Replicate_Wild_Ignore_Table:

上面是同步的基本信息。

基本上同步出错的原因都是因为my.cnf的错误。