You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			354 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			354 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-exemgr
 | 
						|
/bin/systemctl stop mcs-writeengineserver
 | 
						|
/bin/systemctl stop mcs-primproc
 | 
						|
/bin/systemctl stop mcs-controllernode
 | 
						|
/bin/systemctl stop mcs-workernode
 | 
						|
/bin/systemctl stop mcs-storagemanager
 | 
						|
 | 
						|
exit 0
 |