zoukankan      html  css  js  c++  java
  • [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 statusG
    *************************** 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)
  • 相关阅读:
    C# 调用外部程序Process类
    Wix学习整理(1)——快速入门HelloWorld
    InstallShield修改XML配置文件
    小公式
    EOJ11月月赛
    长春
    贪心[偏序+treap]
    哈希
    莫比乌斯反演
    Android 编程规范
  • 原文地址:https://www.cnblogs.com/tingxin/p/14288599.html
Copyright © 2011-2022 走看看