共计 1165 个字符,预计需要花费 3 分钟才能阅读完成。
这篇文章主要介绍“怎么解决 mysql 主从复制报错问题”,在日常操作中,相信很多人在怎么解决 mysql 主从复制报错问题问题上存在疑惑,丸趣 TV 小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”怎么解决 mysql 主从复制报错问题”的疑惑有所帮助!接下来,请跟着丸趣 TV 小编一起来学习吧!
主从复制报错信息:
mysql show slave status \G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Relay_Master_Log_File: log-bin.000006
Slave_IO_Running: Yes
Slave_SQL_Running: No
Last_Errno: 1206
Last_Error: Could not execute Delete_rows event on table my_learn.test4; The total number of locks exceeds the lock table size, Error_code: 1206; handler error HA_ERR_LOCK_TABLE_FULL; the event s master log log-bin.000006, end_log_pos 1387576763
Exec_Master_Log_Pos: 120
查看 mysql 错误代码:
错误:1206 SQLSTATE: HY000 (ER_LOCK_TABLE_FULL)
消息:总的锁定数超出了锁定表的大小。
此类解决方法:
1. 查看 max_write_lock_count 和 innodb_buffer_pool_size 参数的值,修改 innodb_buffer_pool_size 的值,增大到符合需求
2. 对于大批量 DML 语句,要分批提交。
主从复制进程的处理:
mysql stop slave;
mysql change master to master_log_file= log-bin.000006 ,master_log_pos=120;
Query OK, 0 rows affected, 2 warnings (0.34 sec)
– 此步注意,以执行写的 binlog 和 POS 点为准。
Relay_Master_Log_File: log-bin.000006
Exec_Master_Log_Pos: 120
mysql start slave;
到此,关于“怎么解决 mysql 主从复制报错问题”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注丸趣 TV 网站,丸趣 TV 小编会继续努力为大家带来更多实用的文章!