2001-09-27 23:05:54 -06:00
|
|
|
reset master;
|
|
|
|
show master status;
|
2000-12-27 03:31:06 +02:00
|
|
|
File Position Binlog_do_db Binlog_ignore_db
|
2002-10-29 15:11:13 -07:00
|
|
|
master-bin.000001 79
|
2001-09-27 23:05:54 -06:00
|
|
|
reset slave;
|
|
|
|
show slave status;
|
2002-04-01 21:46:23 -07:00
|
|
|
Master_Host Master_User Master_Port Connect_retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter Exec_master_log_pos Relay_log_space
|
2001-09-27 23:05:54 -06:00
|
|
|
change master to master_host='127.0.0.1';
|
|
|
|
show slave status;
|
2002-04-01 21:46:23 -07:00
|
|
|
Master_Host Master_User Master_Port Connect_retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter Exec_master_log_pos Relay_log_space
|
2002-10-29 15:11:13 -07:00
|
|
|
127.0.0.1 test MASTER_PORT 7 4 slave-relay-bin.000001 4 No No 0 0 0 4
|
2001-11-04 15:43:41 +02:00
|
|
|
change master to master_host='127.0.0.1',master_user='root',
|
2002-01-22 15:05:11 -07:00
|
|
|
master_password='',master_port=MASTER_PORT;
|
2001-09-27 23:05:54 -06:00
|
|
|
show slave status;
|
2002-04-01 21:46:23 -07:00
|
|
|
Master_Host Master_User Master_Port Connect_retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter Exec_master_log_pos Relay_log_space
|
2002-10-29 15:11:13 -07:00
|
|
|
127.0.0.1 root MASTER_PORT 7 4 slave-relay-bin.000001 4 No No 0 0 0 4
|
2002-10-24 17:46:14 -06:00
|
|
|
start slave;
|
2001-09-27 23:05:54 -06:00
|
|
|
show slave status;
|
2002-04-01 21:46:23 -07:00
|
|
|
Master_Host Master_User Master_Port Connect_retry Master_Log_File Read_Master_Log_Pos Relay_Log_File Relay_Log_Pos Relay_Master_Log_File Slave_IO_Running Slave_SQL_Running Replicate_do_db Replicate_ignore_db Last_errno Last_error Skip_counter Exec_master_log_pos Relay_log_space
|
2002-10-29 15:11:13 -07:00
|
|
|
127.0.0.1 root MASTER_PORT 7 master-bin.000001 79 slave-relay-bin.000001 123 master-bin.000001 Yes Yes 0 0 79 123
|
2001-09-27 23:05:54 -06:00
|
|
|
drop table if exists t1;
|
|
|
|
create table t1 (n int);
|
|
|
|
insert into t1 values (10),(45),(90);
|
|
|
|
select * from t1;
|
2000-12-27 03:31:06 +02:00
|
|
|
n
|
|
|
|
10
|
|
|
|
45
|
|
|
|
90
|
2001-09-27 23:05:54 -06:00
|
|
|
drop table t1;
|