我即将为我的typo3 数据库进行MySQL 复制。有两台服务器。你猜对了,一个是Master,一个是Slave。
掌握my.cnf:
[mysql]
server-id = 1
log-bin
expire_logs_days = 21
max_binlog_size = 500M
binlog-ignore-db=mysql
从 my.cnf:
[mysql]
server-id = 2
binlog-ignore-db = mysql
replicate-ignore-db = mysql
auto-increment-offset = 1
expire_logs_days = 21
max_binlog_size = 500M
主机repl@slaveip REPLICATION SLAVE, REPLICATION CLIENT
上的用户: 从机上的用户:repl@masterip REPLICATION SLAVE, REPLICATION CLIENT
到目前为止一切正常,即使我在 Master 上更改了某些内容,但如果我在 Master 上删除了相同的内容,Slave 会停止并显示以下错误消息:
Last_SQL_Error: Error 'Duplicate entry '65021' for key 'PRIMARY'' on query. Default database: 'typo3'. Query: 'INSERT INTO sys_log (userid,type,action,error,details_nr,details,IP,tstamp,workspace) VALUES ('0','5','0','2','0','Core: Exception handler (WEB): Uncaught TYPO3 Exception: Reason: Segment "404" was not a keyword for a postVarSet as expected on page with id=0.<br />\n<br />\nAdditionally, http://www.21cdocs.de/404/ was not found while trying to retrieve the error document. | RuntimeException thrown in file /mnt/platte02/www/typo3/typo3_src-4.5.19/typo3/sysext/cms/tslib/class.tslib_fe.php in line 1542','masterip','1351240603','0')'
这就是show slave status\G
向我展示的。
任何解决方案如何强制奴隶用主人数据覆盖它上面的所有东西?
- 蒂莫