[MY-011522] [Repl] Plugin group_replication reported: 'The member contains transactions not present in the group.
error:
mysql> start group_replication; ERROR 3092 (HY000): The server is not configured properly to be an active member of the group. Please see more details on error log.
reason:
节点包含了非group内的事务。
mysql> show master status\G *************************** 1. row *************************** File: mysql-bin.000002 Position: 463 Binlog_Do_DB: Binlog_Ignore_DB: Executed_Gtid_Set: b464e627-5878-11eb-87de-0050562dda68:1 1 row in set (0.00 sec)
解决:
mysql> RESET MASTER; Query OK, 0 rows affected (0.00 sec) mysql> CHANGE MASTER TO MASTER_USER='repl', MASTER_PASSWORD='12345678' FOR CHANNEL 'group_replication_recovery'; Query OK, 0 rows affected, 2 warnings (0.02 sec) mysql> start group_replication; Query OK, 0 rows affected (3.50 sec)
每天进步一点点,多思考,多总结
版权声明:本文为CNblog博主「zaituzhong」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。