https://blog.longwin.com.tw/2008/12/mys ... -msg-2008/
MySQL 在 Replication 的 Slave 在正常情況下都是運作良好的, 但是在 Master 有錯誤/硬碟爆滿 或其它意外狀況下, 就會造成 Slave 會有些錯誤發生, 例如: MySQL Replication 出現 Duplicate Key.
問題發生的種類還不少, 若想要先忽略這些錯誤, 之後再統一重新做 sync, 要怎麼忽略掉所有錯誤訊息, 先讓 Replication 跟上進度呢?
尋找有何參數可設定忽略錯誤
目前常用 SET GLOBAL SQL_SLAVE_SKIP_COUNTER =1 來忽略掉一筆 SQL 語法, 那 SLAVE 相關的變數有什麼可以設定:
mysql> show variables like "%slave%";
+----------------------------------+-----------+
| Variable_name | Value |
+----------------------------------+-----------+
| init_slave | |
| log_slave_updates | OFF |
| slave_compressed_protocol | OFF |
| slave_exec_mode | STRICT |
| slave_load_tmpdir | /var/tmp/ |
| slave_net_timeout | 3600 |
| slave_skip_errors | OFF |
| slave_transaction_retries | 10 |
| sql_slave_skip_counter | |
+----------------------------------+--------------+
修改 slave_skip_erros 值
於上面的表找到 slave_skip_errors => OFF, 有這個選項, 但是想要 SET GLOBAL SLAVE_SKIP_ERRORS = "ALL" 似乎行不通.
由此表可知 MySQL Server System Variables, slave_skip_errors 是無法被動態改變的.
要改變 slave_skip_errors 的方法就只有在 MySQL 啟動時加:
--slave_skip_errors=all
或者於 /etc/my.cnf 加入:
slave-skip-errors=all # 於 [mysqld] 下面加入此行
再 restart mysql 即可
確認是否忽略所有錯誤
mysql> show variables like "%slave%";
slave_skip_errors => ALL # 看到 ALL 就代表會忽略掉所有錯誤訊息
忽略某個錯誤編號
若只要排除 Duplicate entry (Last_Errno: 1062), 可以單獨指定 Error No, 多個寫法如下:
--slave-skip-errors=1062,1053
--slave-skip-errors=all
詳細可見: Replication Slave Options and Variables
於 my.cnf 設定忽略
vim /etc/my.cnf
slave-skip-errors=1062 # 於 [mysqld] 下面加入此行
相關網頁
請教如何設定 slave_skip_errors 參數
MySQL Replication Slave 忽略所有錯誤訊息(slave-skip-errors)
前往
- Software
- ↳ CodeCharge Studio
- ↳ CodeCharge
- ↳ DemoCharge
- ↳ SuperPDF
- ↳ 551einv
- ↳ E3進銷存
- 程式語言
- ↳ PHP
- ↳ CodeLobster PHP Edition
- ↳ Yii
- ↳ CodeIgniter
- ↳ Phalcon
- ↳ Symfony
- ↳ FuelPHP
- ↳ Zend Framework 2
- ↳ laravel
- ↳ WordPress
- ↳ ASP.NET/C#
- ↳ ASP/VBScript
- ↳ JSP
- ↳ Java Servlets
- ↳ ColdFusion
- ↳ Perl
- ↳ Java Script
- ↳ jQuery
- ↳ HTML + CSS
- ↳ jQuery
- ↳ nodejs
- ↳ VB6
- ↳ Git
- ↳ App Inventor 2
- ↳ bash
- ↳ C++/ VC/ OpenCV
- ↳ OpenCV
- ↳ go
- ↳ cordova
- ↳ python
- ↳ Xamarin
- ↳ Assembly
- 資料庫
- ↳ MySQL
- ↳ PostgreSQL
- ↳ ORACLE
- ↳ Access
- ↳ SQL Server
- ↳ SQLite
- ↳ MariaDB
- ↳ Mongodb
- 作業系統
- ↳ Linux
- ↳ Ubuntu
- ↳ CentOS
- ↳ Mint
- ↳ Mandriva
- ↳ Debian
- ↳ Red Hat Enterprise Linux
- ↳ Oracle Linux
- ↳ Fedora
- ↳ Kali Linux
- ↳ OpenSUSE
- ↳ Elementary OS
- ↳ Microsoft
- ↳ Server 2008 R2
- ↳ Server 2012 R2
- ↳ Server 2012
- ↳ 8
- ↳ 10
- ↳ System Center 2016
- ↳ NOVELL
- ↳ FreeBSD
- ↳ VMware
- ↳ VirtualBox
- ↳ Mac OS X
- ↳ Solaris
- ↳ iOS
- ↳ Android
- ↳ Cloud
- ↳ OpenStack
- ↳ Docker
- ↳ Proxmox VE
- ↳ CloudReady
- ↳ chrome
- 網頁伺服器
- ↳ apache
- ↳ tomcat
- ↳ nginx
- ↳ IIS
- ↳ JBoss
- ↳ weblogic
- ↳ WebHosting
- 硬體
- ↳ 硬體及週邊
- ↳ RouterOS
- ↳ LEGO NXT
- ↳ Arduino
- ↳ MSP430
- ↳ Raspberry Pi
- ↳ OpenERP
- ↳ Storage
- ↳ Server
- ↳ Brocade
- ↳ MODELS
- ↳ FortiGate
- 軟體
- ↳ sublime
- ↳ LibreNMS