mysql:changemasters
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
mysql:changemasters [2015/06/24 16:49] – rlunaro | mysql:changemasters [2022/12/02 21:02] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 79: | Line 79: | ||
And now we want this: | And now we want this: | ||
- | {{ :mysql:20150623_mysql_step_2.png?200 |}} | + | {{:mysql:20150623_mysql_step_3.png?200|}} |
For that, we have to: | For that, we have to: | ||
Line 105: | Line 105: | ||
Among the information that '' | Among the information that '' | ||
both database servers are in the same position. | both database servers are in the same position. | ||
+ | |||
+ | ==== Create (if it does not exist) a replication user in future-master ==== | ||
+ | |||
+ | < | ||
+ | grant replication slave, replication client on *.* to YOUR-REPLICATION-USERNAME identified by ' | ||
+ | </ | ||
+ | |||
+ | ==== Check master status an take note of the master log file and master log position ==== | ||
+ | |||
+ | We have to issue a '' | ||
+ | |||
+ | < | ||
+ | mysql> show master status\G | ||
+ | *************************** 1. row *************************** | ||
+ | File: YOUR-MASTER-LOG-FILE | ||
+ | | ||
+ | | ||
+ | | ||
+ | Executed_Gtid_Set: | ||
+ | 1 row in set (0.00 sec) | ||
+ | </ | ||
+ | |||
+ | With this two values, YOUR-MASTER-LOG-FILE and YOUR-MASTER-LOG-POS, | ||
+ | slave and issue a change master to command. | ||
==== Issue a change master command ==== | ==== Issue a change master command ==== | ||
Line 116: | Line 140: | ||
master_port=3306, | master_port=3306, | ||
master_user=' | master_user=' | ||
- | master_password=' | + | master_password=' |
+ | master_log_file = ' | ||
+ | master_log_pos = YOUR-MASTER-LOG-POSITION; | ||
+ | |||
+ | start slave; | ||
</ | </ | ||
+ | And I've stopped and started the slave. | ||
+ | |||
+ | ===== Final check ===== | ||
+ | |||
+ | You can double check that your slave is working with the new configuration just by the method of looking | ||
+ | one change made in the new master. | ||
mysql/changemasters.1435164542.txt.gz · Last modified: 2022/12/02 21:02 (external edit)