Multiple choice technology operating systems

what is the command to stop mysql replication on slave server?

  1. stop slave

  2. service mysql stop

  3. shutdown

  4. service mysql restart

Reveal answer Fill a bubble to check yourself
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.