27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
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 master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
|
|
[connection master]
|
|
[connection slave]
|
|
include/stop_slave.inc
|
|
include/start_slave.inc
|
|
[connection master]
|
|
CREATE TABLE bug17532932(a TIMESTAMP,
|
|
b DATETIME,
|
|
c TIME)ENGINE=MYISAM;
|
|
include/sync_slave_sql_with_master.inc
|
|
DROP TABLE bug17532932;
|
|
include/rpl_stop_server.inc [server_number=2]
|
|
include/rpl_start_server.inc [server_number=2]
|
|
include/rpl_start_slaves.inc
|
|
[connection master]
|
|
INSERT INTO bug17532932 VALUES ("2014-04-16 12:35:51",
|
|
"2010-08-26 12:15:52",
|
|
"-38:59:59");
|
|
include/sync_slave_sql_with_master.inc
|
|
include/diff_tables.inc [master:bug17532932, slave:bug17532932]
|
|
[connection master]
|
|
DROP TABLE bug17532932;
|
|
include/rpl_end.inc
|