mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
14 lines
246 B
Text
14 lines
246 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.
|
|
# restart
|
|
SELECT @@GLOBAL.WSREP_ON;
|
|
@@GLOBAL.WSREP_ON
|
|
1
|
|
# End of test.
|