天天看點

mysql5.7 gtid主從複制

主庫配置

server-id=1

gtid_mode=on

enforce-gtid-consistency=on

log-bin=log-bin

從庫配置

server-id=2

gtid-mode=on

read_only=1

主從複制開啟之前,確定從庫和主庫的資料一緻

在主庫建立一個使用者,用來做主從複制用

1.主庫開啟log-binzhi之後,把主庫的資料dump出來,導入到從庫

  1. 在主庫執行 show master status;
File Position Binlog_Do_DB Binlog_Ignore_DB Executed_Gtid_Set
master.000001 154

3.在從庫執行 change master to master_host='172.28.18.69' ,master_user='repl',master_password='xxxxxx',master_auto_position=1;

其中master_auto_position的值來在上一步的執行結果

  1. 在從庫執行 start slave;

繼續閱讀