MySQL实时热备教程

MySQL实时热备教程

名称约定:

1、主机地址为192.168.1.1,端口号为3306的数据库为A服务。
2、主机地址为192.168.1.2,端口号为3308的数据库为B服务。

目的:

把A的mas、mas_activiti数据库实时同步到B上。

操作:

1、把A服务所在的mysql目录下mysql.ini的后面添加下列配置。

log-bin=mysql-bin
binlog-format=Row
server-id=1
binlog_do_db=mas
binlog_do_db=mas_activiti

2、重新启动A服务。
3、用cmd进入A服务所在的mysql的bin目录下,输入mysql,进入mysql命令行,执行show master status\G,显示如下所示,并记住File和Position

mysql> show master status\G
*************************** 1. row ***************************
File: mysql-bin.000003
Position: 154
Binlog_Do_DB: mas,mas_activiti 
Binlog_Ignore_DB:
Executed_Gtid_Set:
1 row in set (0.00 sec)

含义:

Binlog_Do_DB 要热备的数据库
Binlog_Ignore_DB 忽略的数据库

4、把B服务所在的mysql目录下mysql.ini的后面添加下列配置。

log-bin=mysql-bin
binlog-format=mixed
server-id=2
replicate-do-db=mas
replicate-do-db=mas_activiti
relay_log=mysql-relay-bin
log-slave-updates=ON

注意:

server-id不能和A服务的一样,不然会进入循环同步

5、修改mysql目录的data目录下的auto.conf,保证B服务的UUID和A服务的UUID不能一致
6、重启B服务。
7、把A服务的mas,mas_activiti的数据库同步到B服务上, 同步完成后,用cmd进入B服务所在的mysql的bin目录下,输入mysql,进入mysql命令行,执行以下语句

CHANGE MASTER TO 
       MASTER_HOST='localhost', 
       MASTER_PORT=3306,
       MASTER_USER='root', 
       MASTER_PASSWORD='pitaya100.com', 
       MASTER_LOG_FILE='mysql-bin.000003', 
       MASTER_LOG_POS=154;

其中

MASTER_HOST为A服务的主机地址,
MASTER_PORT为A服务的mysql端口号,
MASTER_USER为A服务的用户名,
MASTER_PASSWORD为A服务的密码,
MASTER_LOG_FILE,MASTER_LOG_POS输入刚刚记下的File和Position

8、在B服务器上继续输入 show slave status\G

 show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: localhost
                  Master_User: root
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000003
          Read_Master_Log_Pos: 2238
               Relay_Log_File: mysql-relay-bin.000006
                Relay_Log_Pos: 2451
        Relay_Master_Log_File: mysql-bin.000003
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB: mas,mas_activiti
          Replicate_Ignore_DB:
           Replicate_Do_Table:
       Replicate_Ignore_Table:
      Replicate_Wild_Do_Table:
  Replicate_Wild_Ignore_Table:
                   Last_Errno: 0
                   Last_Error:
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 2238
              Relay_Log_Space: 2824
              Until_Condition: None
               Until_Log_File:
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File:
           Master_SSL_CA_Path:
              Master_SSL_Cert:
            Master_SSL_Cipher:
               Master_SSL_Key:
        Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 0
                Last_IO_Error:
               Last_SQL_Errno: 0
               Last_SQL_Error:
  Replicate_Ignore_Server_Ids:
             Master_Server_Id: 1
                  Master_UUID: 6a34cc87-f677-11e5-837d-b8975a6f1fbf
             Master_Info_File: E:\database\mysql-qc\data\master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
           Master_Retry_Count: 86400
                  Master_Bind:
      Last_IO_Error_Timestamp:
     Last_SQL_Error_Timestamp:
               Master_SSL_Crl:
           Master_SSL_Crlpath:
           Retrieved_Gtid_Set:
            Executed_Gtid_Set:
                Auto_Position: 0
         Replicate_Rewrite_DB:
                 Channel_Name:
1 row in set (0.00 sec)

如果

这 Slave_IO_Running,Slave_SQL_Running这两个都为YES,则热备开启成功,如其中一个为NO,会提示失败原因,根据失败原因找出问题来。
9、命令:停止同步:

stop slave

开启同步:

start slave

你可能感兴趣的:(数据库)