START SLAVE starts the primary/secondary replication links created by CHANGE MASTER TO.
Syntax
START SLAVE [ channel_option ]
channel_option:
FOR CHANNEL channelUsage notes
Run this statement with a privileged account of the current instance.
If
channel_optionis specified, the statement affects only the named replication link.If
channel_optionis omitted, the statement affects all replication links on the current instance.SLAVEandREPLICAare interchangeable in this statement.
Examples
Start all replication links:
START SLAVE;Start the replication link named TEST:
START SLAVE FOR CHANNEL 'TEST';What's next
CHANGE MASTER TO: Create or modify a primary/secondary replication link.
STOP SLAVE: Stop a running replication link.