mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
23 lines
507 B
Plaintext
23 lines
507 B
Plaintext
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
connection node_2;
|
|
SELECT @@global.wsrep_sst_auth;
|
|
@@global.wsrep_sst_auth
|
|
********
|
|
SET @@global.wsrep_sst_auth='foo:bar';
|
|
SELECT @@global.wsrep_sst_auth;
|
|
@@global.wsrep_sst_auth
|
|
********
|
|
connection node_2;
|
|
SET @@global.wsrep_sst_auth= 'abcdefghijklmnopqrstuvwxyz';
|
|
SELECT @@global.wsrep_sst_auth;
|
|
@@global.wsrep_sst_auth
|
|
********
|
|
Shutdown node_2
|
|
connection node_1;
|
|
connection node_2;
|
|
SELECT @@global.wsrep_sst_auth;
|
|
@@global.wsrep_sst_auth
|
|
********
|