1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
include/master-slave.inc
Warnings:
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
Note #### Storing MySQL user name or password information in the connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
[connection master]
call mtr.add_suppression("Replica I/O: The replica I/O thread stops because a fatal error is encountered when it tried to SET @master_binlog_checksum");
create table t1(n int);
select * from t1;
n
stop slave sql_thread;
Warnings:
Warning 1287 'STOP SLAVE' is deprecated and will be removed in a future release. Please use STOP REPLICA instead
insert into t1 values(1);
insert into t1 values(2);
include/wait_for_slave_param.inc [Read_Master_Log_Pos]
include/stop_slave.inc
CHANGE REPLICATION SOURCE to SOURCE_USER='root';
Warnings:
Note #### Sending passwords in plain text without SSL/TLS is extremely insecure.
Note #### Storing MySQL user name or password information in the connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
start slave;
Warnings:
Warning 1287 'START SLAVE' is deprecated and will be removed in a future release. Please use START REPLICA instead
select * from t1;
n
1
2
drop table t1;
include/rpl_reset.inc
create table t1 (a int);
insert into t1 values (1);
flush logs;
insert into t1 values (2);
include/diff_tables.inc [master:t1, slave:t1]
include/stop_slave.inc
delete from t1 where a=2;
CHANGE REPLICATION SOURCE TO relay_log_file='slave-relay-bin.000005', relay_log_pos=4;
start slave sql_thread;
Warnings:
Warning 1287 'START SLAVE' is deprecated and will be removed in a future release. Please use START REPLICA instead
include/wait_for_slave_sql_to_start.inc
include/diff_tables.inc [master:t1, slave:t1]
start slave io_thread;
Warnings:
Warning 1287 'START SLAVE' is deprecated and will be removed in a future release. Please use START REPLICA instead
include/wait_for_slave_io_to_start.inc
set global relay_log_purge=1;
drop table t1;
include/rpl_reset.inc
Master_Retry_Count:
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_RETRY_COUNT=20;
include/start_slave.inc
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_RETRY_COUNT=0;
include/start_slave.inc
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_RETRY_COUNT=1;
include/start_slave.inc
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_RETRY_COUNT=10;
include/start_slave.inc
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_RETRY_COUNT=RETRY_COUNT_SET;
SELECT RETRY_COUNT_EXPECTED AS current_retry_count;
current_retry_count
RETRY_COUNT_EXPECTED
CHANGE REPLICATION SOURCE TO SOURCE_CONNECT_RETRY= 2;
CHANGE REPLICATION SOURCE TO SOURCE_CONNECT_RETRY= 1;
include/rpl_restart_server.inc [server_number=2]
include/start_slave.inc
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_RETRY_COUNT=10;
CHANGE REPLICATION SOURCE TO SOURCE_RETRY_COUNT='a';
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''a'' at line 1
CHANGE REPLICATION SOURCE TO SOURCE_RETRY_COUNT=-1;
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-1' at line 1
include/start_slave.inc
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_CONNECT_RETRY= 200, IGNORE_SERVER_IDS= (100, 200, 300, 400, 500);
include/rpl_restart_server.inc [server_number=2]
include/start_slave.inc
Eexpected values: "100, 200, 300, 400, 500" == "100, 200, 300, 400, 500" or 200 == 200
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO IGNORE_SERVER_IDS= ();
include/start_slave.inc
include/stop_slave.inc
create table t1(n int, b varchar(256));
insert into t1 values(1, <source_bind>);
CHANGE REPLICATION SOURCE to SOURCE_HOST=<source_bind>, SOURCE_BIND=<source_bind>;
start slave;
Warnings:
Warning 1287 'START SLAVE' is deprecated and will be removed in a future release. Please use START REPLICA instead
include/wait_for_slave_to_start.inc
drop table t1;
include/stop_slave.inc
create table t1(n int, b varchar(256));
insert into t1 values(1, <source_bind>);
CHANGE REPLICATION SOURCE to SOURCE_BIND=<source_bind>;
start slave;
Warnings:
Warning 1287 'START SLAVE' is deprecated and will be removed in a future release. Please use START REPLICA instead
include/wait_for_slave_io_error.inc [errno=2003]
got expected error 2003
include/stop_slave.inc
CHANGE REPLICATION SOURCE to SOURCE_BIND='';
start slave;
Warnings:
Warning 1287 'START SLAVE' is deprecated and will be removed in a future release. Please use START REPLICA instead
include/wait_for_slave_to_start.inc
drop table t1;
include/stop_slave.inc
create table t1(n int, b varchar(256));
insert into t1 values(1, <source_bind>);
CHANGE REPLICATION SOURCE to SOURCE_HOST=<source_bind>, SOURCE_BIND=<source_bind>;
start slave;
Warnings:
Warning 1287 'START SLAVE' is deprecated and will be removed in a future release. Please use START REPLICA instead
include/wait_for_slave_to_start.inc
drop table t1;
include/stop_slave.inc
create table t1(n int, b varchar(256));
insert into t1 values(1, <source_bind>);
CHANGE REPLICATION SOURCE to SOURCE_BIND=<source_bind>;
start slave;
Warnings:
Warning 1287 'START SLAVE' is deprecated and will be removed in a future release. Please use START REPLICA instead
include/wait_for_slave_to_start.inc
drop table t1;
include/stop_slave.inc
CHANGE REPLICATION SOURCE TO SOURCE_HOST='SAVE_MASTER_HOST';
include/start_slave.inc
include/rpl_end.inc
|