I have configuration replication master - master mysql server: Here Illustration design :
Master1 = 10.10.10.1 database = db1 table = tbl1
Master2 = 10.10.10.2 database = db1 table = tbl1
mysql config: root disabled to access from network (security reason). I create user: replicator using ssl to connect both server with grant replication slave and replication client.
Default port: 3306
My question how to sync from tbl1 on master 1 to tbl1 master 2 with pt-table-checksum & pt-table-sync
Thank you.