mysql主從庫分歧步成績處理辦法。本站提示廣大學習愛好者:(mysql主從庫分歧步成績處理辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql主從庫分歧步成績處理辦法正文
碰到如許的毛病如:“Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file'”等或因為清數據招致主從庫分歧步了,處理方法以下:
先輩入slave中履行:"slave stop;"來停滯從庫同步;
再去master中履行:"flush logs;"來清空日記;
然後在master中履行:"show master status;"檢查下主庫的狀況,重要是日記的文件和position;
然後回到slave中,履行:"CHANGE MASTER TO MASTER_LOG_FILE='log-bin.000004',MASTER_LOG_POS=106;",文件和地位對應master中的;
最初在slave中履行:"slave start;"來啟動同步。