I'm trying to migrate from an EC2 mysql(percona galera) to rds mysql but I'm running into some issues. The initial import works great but after that I'm hitting an issue when trying to apply the remaining binarylogs.
Command to create binlog sql:
mysqlbinlog /var/lib/mysql/binary-logs.000027 --start-position=354567 > /var/lib/mysql/backup/binlog.sql`
Output of import command:
mysql -u mysqluser -p -h mysqlmasked.cfdaddadacsabil.us-east-1.rds.amazonaws.com -e "source binlog.sql"
Enter password:
ERROR 1227 (42000) at line 9 in file: 'binlog.sql': Access denied; you need (at least one of) the SUPER privilege(s) for this operation
Snip of the binlog.sql line 9(BINLOG ') is where the error occurred:
BINLOG ' rLADADADAAAdAAAAHgAAAABAAQANS42LjIyLTcyLjZAZZAZAbG9nAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAACsu7lADADANAAgAEgAEBAQEEgAAXAAEGggAAAAIDADAAAAACgoKGRkAATlU
4cQ=
'/*!*/;
How can we work around this, so we have minimal business impact during the migration? Replication is also not an option because GTID is used on the master(ec2) side and amazon does not support this.
Thanks in advance for your assistance!