一台机器上的mysql不再为从服务器进行同步了,如何设置可使在show slave status\G时不再有那些同步信息了呢?

解决方案 »

  1.   

    stop slave;
    CHANGE MASTER TO MASTER_HOST='';
      

  2.   

    stop slave;
    RESET SLAVE;
    RESET SLAVE makes the slave forget its replication position in the
    master's binary log. This statement is meant to be used for a clean
    start: It deletes the master.info and relay-log.info files, all the
    relay log files, and starts a new relay log file.*Note*: All relay log files are deleted, even if they have not been
    completely executed by the slave SQL thread. (This is a condition
    likely to exist on a replication slave if you have issued a STOP SLAVE
    statement or if the slave is highly loaded.)