Skip to content

4. Mysql Configuration

telan edited this page Oct 12, 2019 · 2 revisions

Turn on mysql binlog support and specify the format as row, as configured below.

[mysqld]
server-id        = 1
log_bin          = /var/log/mysql/mysql-bin.log
expire_logs_days = 10
max_binlog_size  = 100M
binlog-format    = row #Very important if you want to receive write, update and delete row events
Clone this wiki locally