【发布时间】:2017-01-20 22:43:33
【问题描述】:
我在两台不同的主机上有两台 MariaDB 10.1.16 服务器。 我设置了一个主从副本,没有错误:
奴隶:
MariaDB [(none)]> SHOW SLAVE STATUS\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: host02
Master_User: slave
Master_Port: 3306
Connect_Retry: 10
Master_Log_File: host02-bin.000012
Read_Master_Log_Pos: 3814
Relay_Log_File: host03-relay-bin.000027
Relay_Log_Pos: 3188
Relay_Master_Log_File: host02-bin.000012
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB: db1,db2,db3,db4,db5,db1,db2,db3,db4,db5
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: 3814
Relay_Log_Space: 3491
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_SSL_Crl:
Master_SSL_Crlpath:
Using_Gtid: No
Gtid_IO_Pos:
Replicate_Do_Domain_Ids:
Replicate_Ignore_Domain_Ids:
Parallel_Mode: conservative
大师:
MariaDB [(none)]> SHOW MASTER STATUS;
+-----------------------+----------+--------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+-----------------------+----------+--------------+------------------+ | host03-bin.000012 | 3814 | | |
+-----------------------+----------+--------------+------------------+
警报日志中没有错误或警告。
掌握我的.cnf:
[mysqld]
server_id=1
relay-log=host02-relay-bin
log-bin=host02-bin
从 my.cnf:
[mysqld]
log-bin
server_id=2
replicate-do-db="db1,db2,db3,db4,db5"
relay-log=host03-relay-bin
log-bin=host03-bin
问题是没有错误,但在 MASTER(例如 INSERT)中所做的更改不会在 SLAVE 上复制。 可能是 Replicate_Do_DB 问题?
【问题讨论】:
标签: mysql mariadb database-replication