Changes between Version 9 and Version 10 of GROUPReplicate3


Ignore:
Timestamp:
07/17/22 01:23:41 (2 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUPReplicate3

    v9 v10  
    5353}}}
    5454
     55On nodedb3
     56{{{
     57mysql> SET @@GLOBAL.group_replication_group_name='aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee';
     58       SET @@GLOBAL.group_replication_local_address='nodedb3:33061';
     59       SET @@GLOBAL.group_replication_group_seeds='nodedb1:33061,nodedb2:33061,nodedb3:33061';
     60       SET @@GLOBAL.group_replication_bootstrap_group=0;
     61       SET @@global.group_replication_recovery_retry_count=5;
     62       change master to master_user='repl' for channel 'group_replication_recovery';
     63       START GROUP_REPLICATION;
     64       SELECT * FROM performance_schema.replication_group_members;
     65}}}
     66
    5567Add user and password without authenticates with caching_sha2_plugin. Just use ''' WITH mysql_native_password '''
    5668{{{