我有两台 Linux 机器。主机器上的配置文件如下 (my.cnf)
log-bin = master-bin
log-bin-index = master-bin.index
binlog-do-db = test_db
server-id = 1
master状态如下:
mysql> show master status;
+-------------------+----------+----------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+-------------------+----------+----------------+------------------+
| master-bin.000026 | 106 | test_db | |
+-------------------+----------+----------------+------------------+
1 row in set (0.00 sec)
从属设备上的配置文件为:
server-id = 2
relay-log-index = slave-relay-bin.index
relay-log = slave-relay-bin
replicate-do-db=test_db
从属状态为:
mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 207.216.74.213
Master_User: repl_user
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: master-bin.000027
Read_Master_Log_Pos: 276
Relay_Log_File: slave-relay-bin.000141
Relay_Log_Pos: 422
Relay_Master_Log_File: master-bin.000027
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB: test_db
Last_Errno: 0
Exec_Master_Log_Pos: 276
Relay_Log_Space: 723
Until_Condition: None
Until_Log_Pos: 0
Master_SSL_Allowed: No
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_SQL_Errno: 0
1 row in set (0.00 sec)
我从上面的状态中删除了一些空白条目
从服务器确实连接上了,并且显示了正确的主服务器日志文件,但我没有从主服务器向从服务器发送任何数据。可能出了什么问题?
编辑:- 我唯一能找到的是主服务器有版本 5.1.41-3ubuntu12.10-log 或 MySQL 但从服务器有 5.1.41-3ubuntu12.10。
答案1
:D 是的binlog_do_db
。
我只想在我们的应用程序正在使用的主数据库中包含事件,所以我在中包含了此行my.cnf
。我删除了它,现在它运行良好。