I'm trying to set up a MySQL read replica on AWS RDS.
The user for the slave (rdsrepladmin) has the REQUIRE SSL
flag set.
This causes the read replica server to enter a perpetual 'read replication: connecting' state.
So, I'm read that I need to (on the slave) issue the commands:
STOP SLAVE;
CHANGE MASTER TO MASTER_SSL=1,
START SLAVE;
But, the CHANGE MASTER TO ...
command fails, because I do not have the super
privilege.
There is no way around this (that I know of), because with a MySQL instance at AWS RDS, only AWS's internal server management accounts have the super
privilege.
Yet, I fail to believe (yet) that AWS RDS does not support REQUIRE SSL
for replication connections.
So, my question is
How to get the read replica to connect, using SSL/TLS on MySQL instance at AWS RDS?