mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 17:33:44 +01:00
16 lines
437 B
Text
16 lines
437 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
RESET SLAVE;
|
|
CHANGE MASTER TO master_host='127.0.0.1',master_port=MASTER_PORT,master_user='root';
|
|
START SLAVE IO_THREAD;
|
|
include/wait_for_slave_io_to_start.inc
|
|
SHOW SLAVE HOSTS;
|
|
Server_id Host Port Master_id
|
|
3 slave2 DEFAULT_PORT 1
|
|
2 SLAVE_PORT 1
|
|
STOP SLAVE IO_THREAD;
|
|
include/wait_for_slave_io_to_stop.inc
|
|
SHOW SLAVE HOSTS;
|
|
Server_id Host Port Master_id
|
|
2 SLAVE_PORT 1
|
|
include/rpl_end.inc
|