You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
Master switchover fails on 5.6 when replication user's hostname has wildcard characters.
E.g. if replication user is added as repl@% the following line will be executed b/c the script tries to fetch password for the replication [email protected]() and when it's stored in database as user@% -- it is just ignored and the script fails:
ERROR: The specified replication user is using a different password that the one specified.
Use the --force option to force the use of the user specified with --rpl-user and new password.
# Errors found. Switchover aborted.
Whereas with 5.7 it works ok, since the script tries to connect to the server using provided user/password instead of comparing passwords (after f0fd574).
Could we consider using this block unconditionally? Seems like it works ok with versions < 5.7 too.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
Master switchover fails on 5.6 when replication user's hostname has wildcard characters.
E.g. if replication user is added as
repl@%
the following line will be executed b/c the script tries to fetch password for the replication[email protected]()
and when it's stored in database asuser@%
-- it is just ignored and the script fails:Whereas with 5.7 it works ok, since the script tries to connect to the server using provided user/password instead of comparing passwords (after f0fd574).
Could we consider using this block unconditionally? Seems like it works ok with versions < 5.7 too.
The text was updated successfully, but these errors were encountered: