what is the command to stop mysql replication on slave server?
-
stop slave
-
service mysql stop
-
shutdown
-
service mysql restart
A
Correct answer
Explanation
The 'STOP SLAVE' command is the correct MySQL statement to stop replication on a slave server. This command halts the replication SQL thread and/or I/O thread without stopping the entire MySQL service. 'service mysql stop' would stop the entire MySQL server, not just replication.