mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
13 lines
236 B
Text
13 lines
236 B
Text
#
|
|
# MDEV-7798: mysql.server init script can't stop mysqld when WSREP is
|
|
# turned off
|
|
#
|
|
SELECT @@GLOBAL.WSREP_ON;
|
|
@@GLOBAL.WSREP_ON
|
|
1
|
|
SET GLOBAL WSREP_ON= 0;
|
|
Restart the node.
|
|
SELECT @@GLOBAL.WSREP_ON;
|
|
@@GLOBAL.WSREP_ON
|
|
1
|
|
# End of test.
|