美文网首页
Cannot execute statement: imposs

Cannot execute statement: imposs

作者: 曼昱的小蓝毛巾 | 来源:发表于2021-06-17 09:32 被阅读0次
    Last_Error: Error executing row event: 'Cannot execute statement: impossible to write to binary log since statement is in row format and BINLOG_FORMAT = STATEMENT.'
    
    解决:
    vim /etc/my.cnf
    
    # 将此处改为MIXED
    # binlog_format=STATEMENT
    binlog_format=MIXED
    
    
    重启
    # 重启mysql服务
    systemctl restart mysql
    
    

    主从connecting

                  Slave_IO_State: Connecting to master
                      Master_Host: 180.76.123.1
                      Master_User: root
                      Master_Port: 6336
                    Connect_Retry: 60
                  Master_Log_File: mysql-bin.000111
              Read_Master_Log_Pos: 445057
                   Relay_Log_File: instance-6l3gplmb-relay-bin.000001
                    Relay_Log_Pos: 4
            Relay_Master_Log_File: mysql-bin.000111
                 Slave_IO_Running: Connecting
                Slave_SQL_Running: Yes
                  Replicate_Do_DB:
              Replicate_Ignore_DB:
               Replicate_Do_Table:
           Replicate_Ignore_Table:
          Replicate_Wild_Do_Table:
    

    解决办法

    检查ip、端口、密码及授权用户是否正确。
    
    

    相关文章

      网友评论

          本文标题:Cannot execute statement: imposs

          本文链接:https://www.haomeiwen.com/subject/ryyxyltx.html