Changes between Version 4 and Version 5 of GROUPReplicate3


Ignore:
Timestamp:
07/16/22 14:02:01 (2 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUPReplicate3

    v4 v5  
    1414       SELECT * FROM performance_schema.replication_group_members;
    1515}}}
     16
     17Add user and password without authenticates with caching_sha2_plugin. Just use ''' WITH mysql_native_password '''
     18{{{
     19mysql> CREATE USER 'user1'@'%' IDENTIFIED WITH mysql_native_password BY 'password';
     20mysql> FLUSH PRIVILEGES;
     21}}}