我在两个不同的主机上有两个MariaDB 10.1.16服务器。 我设置了Master-Slave副本,没有错误:
从属:
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
MASTER:
MariaDB [(none)]> SHOW MASTER STATUS;
+-----------------------+----------+--------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+-----------------------+----------+--------------+------------------+ | host03-bin.000012 | 3814 | | |
+-----------------------+----------+--------------+------------------+
警报日志中没有错误或警告。
掌握my.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问题?
答案 0 :(得分:1)
您可能没有名为db1,db2,db3,db4,db5
的数据库。
相反,在奴隶的my.cnf中有5 replicate-do-db
行。
另外,请务必不要这样做:
USE db88;
INSERT INTO db1.tbl ...
将使用db88
代替db1
,并且将忽略插入。