Create user
Create a sync user for Integrate.io by executing,Enable binary logging
Set the following properties in the MySQL configuration file (typically available in the/etc/mysql/ directory).
Configure a self-hosted MySQL server as a source in Integrate.io ELT & CDC. Set up binary log replication from your on-premises MySQL database.
CREATE USER 'flydata'@'%' IDENTIFIED BY '<your_password>';
GRANT SELECT, RELOAD, REPLICATION SLAVE, REPLICATION CLIENT, LOCK TABLES ON *.* TO 'flydata'@'%';
FLUSH PRIVILEGES;
/etc/mysql/ directory).
[mysqld]
log_bin = mysql-bin
binlog_format = ROW
binlog_expire_logs_seconds = 604800
binlog_row_image = FULL
net_read_timeout = 3600
net_write_timeout = 3600
wait_timeout = 86400
SHOW GLOBAL VARIABLES LIKE 'log_bin';
Was this page helpful?