Mysql Replication工作原理及其配置

來源:互聯網
上載者:User

MySQL複製(Replication)工作原理:Slave端通過將Master端的binlog利用I/O線程通過網路複製到Slave端,然後再通過SQL線程解析Binlog中的日誌並應用到資料庫中來實現。

1)實體環境

master    A 172.16.100.106

slave     B 172.16.100.108

2)Maser端的配置

在主伺服器上建mysql使用者,使其從伺服器能夠遠程登入主伺服器

grant replication slave on *.* to'david'@'172.16.100.108'identified by 'mysql'

編輯主伺服器的設定檔

/etc/my.cnf

server-id = 1

log-bin = mysql-bin

binlog-ignore = mysql //mysql資料庫不同步

binlog-ignore-db = information_schema

binlog-do-db = firstdb    //同步l資料庫,預設同步所有資料庫

建立同步的資料庫 create database firstdb;

查看主要資料庫的狀態

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.