1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-04-18 21:44:02 +03:00
mariadb-columnstore-engine/oam/install_scripts/mariadb-columnstore-stop.sh
2022-04-04 12:50:42 +00:00

14 lines
333 B
Bash

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