Advertisement
Guest User

Untitled

a guest
Sep 5th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. CHANGE MASTER TO
  2. MASTER_HOST='SOMEIP',
  3. MASTER_USER='esg', <<< -- replication user, i think
  4. MASTER_PASSWORD='*********',
  5. MASTER_PORT=3306,
  6. MASTER_LOG_FILE='mysql-bin.000012',
  7. MASTER_LOG_POS=5067,
  8. MASTER_CONNECT_RETRY=10;
  9.  
  10. GRANT REPLICATION SLAVE ON *.* TO esg;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement