We have an existing master-slave MySQL replication setup where we would like to promote the second slave to a master in order to achieve a master-master setup with no or only minimal downtime.
Is it sufficient to do a SHOW MASTER STATUS
on the slave and do a CHANGE MASTER TO ...
on the current master or will this result in a replication error?