A 資料庫所在主機IP地址為:192.168.239.131 ,B 資料庫所在主機IP地址為:192.168.239.1 ,作業系統均為WINDOWS XP,資料庫名均為tt
一、A 資料庫需要做如下設定:
開啟 my.ini 檔案,在最後面增加幾行(log-bin指定的目錄一定要存在):
server-id=1
log-bin=C:\MySQLLog\log-bin.log
binlog-do-db=tt
master-host=192.168.239.131
master-user=test
master-password=1234
master-port=3306
master-connect-retry=60
replicate-do-db=tt
用 root 登入mysql ,建立一個給B機登入的使用者:
GRANT REPLICATION SLAVE,RELOAD,SUPER ON *.* TO test@'192.168.239.131' IDENTIFIED BY '1234';
二、B 資料庫需要做如下設定:
開啟 my.ini 檔案,在最後面增加幾行(log-bin指定的目錄一定要存在):
server-id=2
log-bin=C:\MySQLLog\log-bin.log
binlog-do-db=tt
master-host=192.168.239.1
master-user=test
master-password=1234
master-port=3306
master-connect-retry=60
replicate-do-db=tt
用 root 登入mysql ,建立一個給A機登入的使用者:
GRANT REPLICATION SLAVE,RELOAD,SUPER ON *.* TO test@'192.168.239.1' IDENTIFIED BY '1234';
三、重啟A 、B 資料庫
四、B庫執行
slave start;
五:A、B分別查看狀態
mysql>show master status;
六:分別刪除A、B 資料庫 Data 上當下的 master.info 檔案。