Changes between Version 1 and Version 2 of GROUPReplicate3


Ignore:
Timestamp:
07/16/22 08:47:00 (2 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUPReplicate3

    v1 v2  
    11
    22
     3On nodedb2
    34{{{
    45mysql> SET @@GLOBAL.group_replication_group_name='aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee';
    5 Query OK, 0 rows affected (0.00 sec)
    6 
    76mysql> SET @@GLOBAL.group_replication_local_address='nodedb2:33061';
    8 Query OK, 0 rows affected (0.00 sec)
    9 
    107mysql> SET @@GLOBAL.group_replication_group_seeds='nodedb1:33061,nodedb2:33061,nodedb3:33061';
    11 Query OK, 0 rows affected (0.00 sec)
    12 
    138mysql>  SET @@GLOBAL.group_replication_bootstrap_group=0;
    14 Query OK, 0 rows affected (0.00 sec)
    15 
    169mysql> SET @@global.group_replication_recovery_retry_count=5;
    17 Query OK, 0 rows affected (0.00 sec)
    18 
    1910mysql> change master to master_user='repl' for channel 'group_replication_recovery';
    20 Query OK, 0 rows affected, 2 warnings (0.34 sec)
    21 
    2211mysql> START GROUP_REPLICATION;
    23 
     12mysql> SELECT * FROM performance_schema.replication_group_members;
    2413}}}