1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-3914 Replaced umbrella systemd service with a shell that starts/stops separate

MCS systemd units.

Add stop for StorageManager systemd unit.
This commit is contained in:
Roman Nozdrin
2020-06-04 14:46:14 +00:00
parent ccdfe98409
commit 2915f83a46
18 changed files with 44 additions and 46 deletions

View File

@ -0,0 +1,14 @@
#!/bin/bash
# This script allows to gracefully shut down MCS
/bin/systemctl stop mcs-dmlproc
/bin/systemctl stop mcs-ddlproc
/bin/systemctl stop mcs-primproc
/bin/systemctl stop mcs-writeengineserver
/bin/systemctl stop mcs-storagemanager
/bin/systemctl stop mcs-exemgr
/bin/systemctl stop mcs-controllernode
/bin/systemctl stop mcs-workernode
exit 0