mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
enable ssl + ssl_verify_server_cert in the internal client too * fix replication tests to disable master_ssl_verify_server_cert because accounts are passwordless - except rpl.rpl_ssl1 * fix federated/federatedx/connect to disable SSL_VERIFY_SERVER_CERT because they cannot configure an ssl connection * fix spider to disable ssl_verify_server_cert, if configuration says so, as spider _can_ configure an ssl connection * memory leak in embedded test-connect
13 lines
440 B
Plaintext
13 lines
440 B
Plaintext
include/master-slave.inc
|
|
[connection master]
|
|
connection slave;
|
|
call mtr.add_suppression(".*Invalid .* username when attempting to connect to the master server.*");
|
|
include/stop_slave.inc
|
|
CHANGE MASTER TO MASTER_USER= '', MASTER_PASSWORD= '';
|
|
START SLAVE;
|
|
include/wait_for_slave_io_error.inc [errno=1045, 1593]
|
|
include/stop_slave_sql.inc
|
|
CHANGE MASTER TO MASTER_USER= 'root', MASTER_PASSWORD= '';
|
|
include/start_slave.inc
|
|
include/rpl_end.inc
|