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 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			318 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			318 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# This script allows to gracefully start MCS
 | 
						|
 | 
						|
/bin/systemctl start mcs-workernode
 | 
						|
/bin/systemctl start mcs-controllernode
 | 
						|
/bin/systemctl start mcs-primproc
 | 
						|
/bin/systemctl start mcs-writeengineserver
 | 
						|
/bin/systemctl start mcs-exemgr
 | 
						|
/bin/systemctl start mcs-dmlproc
 | 
						|
/bin/systemctl start mcs-ddlproc
 | 
						|
 | 
						|
exit 0
 |