Before creating the users, the master will do a RESET MASTER to remove the automatically generated binlogs. The servers should now start a lot faster since they no longer need to replicate the large amounts of data that were in these generated binlogs.
15 lines
513 B
SQL
15 lines
513 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;
|
|
|
|
CREATE USER 'skysql'@'127.0.0.1' IDENTIFIED BY 'skysql';
|
|
CREATE USER 'skysql'@'%' IDENTIFIED BY 'skysql';
|
|
GRANT ALL ON *.* TO 'skysql'@'127.0.0.1' WITH GRANT OPTION;
|
|
GRANT ALL ON *.* TO 'skysql'@'%' WITH GRANT OPTION;
|
|
|
|
SET GLOBAL max_connections=10000;
|