Last active
August 10, 2016 08:25
-
-
Save hashmaparraylist/85df89ddfd82fe06f8e7dc19625e45a6 to your computer and use it in GitHub Desktop.
create root user on mysql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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