Skip to content

Instantly share code, notes, and snippets.

@hashmaparraylist
Last active August 10, 2016 08:25
Show Gist options
  • Save hashmaparraylist/85df89ddfd82fe06f8e7dc19625e45a6 to your computer and use it in GitHub Desktop.
Save hashmaparraylist/85df89ddfd82fe06f8e7dc19625e45a6 to your computer and use it in GitHub Desktop.
create root user on mysql
-- create a root user at 192.168.11.0/24
CREATE USER 'root'@'192.168.11.%' IDENTIFIED BY 'some_pass';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
-- create a replication user
CREATE USER repl_user;
GRANT REPLICATION SLAVE ON *.* TO repl_user IDENTIFIED BY 'some_pass';
-- start reolication on slave
CHANGE MASTER TO MASTER_HOST = 'master', MASTER_PORT = 3306, MASTER_USER = 'repl_user', MASTER_PASSWORD = 'some_pass';
START SLAVE;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment