mysql 的主從錯誤跳過和mariadb的多源主從複製錯誤跳過操作不同,請註意: 更改會話的default_master_connection變數 ...
mysql 的主從錯誤跳過和mariadb的多源主從複製錯誤跳過操作不同,請註意:
更改會話的default_master_connection變數
STOP SLAVE 'slave_account';
SET @@default_master_connection = 'slave_account';
SET GLOBAL SQL_SLAVE_SKIP_COUNTER = 1;
START SLAVE 'slave_account';
SET @@default_master_connection = '';