The setup contains a three node master-slave cluster with both readwritesplit and readconnroute. Removed the duplication of the configuration files in the README and provided links instead.
		
			
				
	
	
		
			11 lines
		
	
	
		
			326 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			326 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
RESET MASTER;
 | 
						|
CREATE DATABASE test;
 | 
						|
 | 
						|
CREATE USER 'maxuser'@'127.0.0.1' IDENTIFIED BY 'maxpwd';
 | 
						|
CREATE USER 'maxuser'@'%' IDENTIFIED BY 'maxpwd';
 | 
						|
GRANT ALL ON *.* TO 'maxuser'@'127.0.0.1' WITH GRANT OPTION;
 | 
						|
GRANT ALL ON *.* TO 'maxuser'@'%' WITH GRANT OPTION;
 | 
						|
 | 
						|
SET GLOBAL max_connections=10000;
 | 
						|
SET GLOBAL gtid_strict_mode=ON;
 |