Windows下MySQL的主從熱備(自動同步)配置

來源:互聯網
上載者:User

標籤:windows mysql

本配置方法適用於5.1之後的版本,個人在5.5上配置成功(5.1之前版本請參考另外的配置說明)

 

環境說明:

Master:192.168.1.200

Slave:192.168.1.210

 

MySQL 的 Master 配置:

配置my.ini:

 

[mysqld]

# The TCP/IP Port the MySQL Server will listen on

port=3306

server-id=200

log-bin=mysql-bin

relay-log=relay-bin

relay-log-index=relay-bin-index



 

*配置好後,重啟Master 的 MySQL服務!!!

 

//--------------------------------------------------

MySQL 的 Slave 配置:

配置my.ini:

 

[mysqld]

# The TCP/IP Port the MySQL Server will listen on

port=3306

server-id = 210

replicate-do-db = test

 

*配置好後,重啟Slave 的 MySQL服務!!!

//--------------------------------------------------

 

登入Slave,然後執行下面命令:

 

mysql> stop slave;

mysql> change master to master_host=‘192.168.1.200‘,master_user=‘root‘,master_password=‘123456‘;

mysql> start slave;

mysql> show slave status\G;

 

查看這兩項是否為YES,yes為正常。

Slave_IO_Running: Yes

Slave_SQL_Running: Yes


本文出自 “清視的藏寶閣” 部落格,請務必保留此出處http://heyhongwu.blog.51cto.com/9921842/1627696

Windows下MySQL的主從熱備(自動同步)配置

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.