mysql主從複製

來源:互聯網
上載者:User

標籤:mysql master slave 主從複製

1、Master伺服器配置。

[[email protected] ~]# vim /etc/my.cnf log-bin=master-binlog-bin-index=master-bin.indexinnodb_file_per_table = 1binlog_format=mixedserver-id  = 1    #必須是唯一值sync_binlog=1     #設定主從同步二進位記錄檔mysql> GRANT REPLICATION SLAVE ON *.* TO ‘repluser‘@‘172.16.%.%‘ IDENTIFIED BY ‘replpass‘;mysql> flush privileges;mysql> SHOW MASTER STATUS\G;

2、Slave伺服器配置。

[[email protected] ~]# vim /etc/my.cnf relay-log = relay-logserver-id = 2relay-log-index = relay-log.indexread-only = on   #資料庫唯讀鎖定,不影響主從複製skip_slave_start=1  #禁止slave隨資料庫啟動mysql> CHANGE MASTER TO MASTER_HOST=‘172.16.23.22‘,MASTER_LOG_FILE=‘master-bin.000001‘,MASTER_USER=‘repluser‘,MASTER_PASSWORD=‘replpass‘,MASTER_LOG_POS=4;mysql> HELP CHANGE MASTER TO  #查看命令用法mysql> SHOW SLAVE STATUS\G;   #查看狀態mysql> START SLAVE;    #啟動slave服務mysql> START SLAVE IO_THREAD;  #依次啟動slave服務mysql> START SLAVE SQL_THREAD;  mysql> show global variables like ‘read%‘;  #查看全域變數驗證唯讀鎖定mysql> set global read_only=off;  #臨時修改系統變數[[email protected] ~]# cat /datadir/master.info  #檔案記錄了master的串連帳號資訊[[email protected] ~]# cat /datadir/relay-log.info  #檔案記錄了中繼日誌的資訊


相關文章

聯繫我們

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