Replication 정상인지 확인하기
mySQL slave로 접속해서

    mysql > show slave status \G;
        .......
        Read_Master_Log_Pos:    49093278
        .......
        Relay_Log_Pos:        49093278
        .......

        Slave_IO_Running: Yes
        Slave_SQL_Running: Yes
        .......
        Exec_Master_Log_Pos:    49093278

        * Slave_IO_Running 과 Slave_SQL_Running 은 반드시 Yes 이어야 한다.

        * Read_Master_Log_Pos와 Exec_Master_Log_Pos는 일치해야함.
Posted by bestrok
,