MySQL主從配置

來源:互聯網
上載者:User

標籤:os   io   資料   for   ar   art   div   log   

一、主要資料庫器配置假設主要資料庫IP地址為:192.168.1.1修改my.cnf在[mysqld]下增加配置server-id=1
log-bin=syslog ##################################### 開啟日誌
binlog-do-db=cmstop ############################### 執行複製的資料庫
binlog-ignore-db=mysql ############################# 不執行複製的資料庫
binlog-ignore-db=test ############################### 不執行複製的資料庫
binlog-ignore-db=information_schema ################### 不執行複製的資料庫儲存修改 重啟MySQL登陸主伺服器 授權複製使用者 grant replication slave on *.* to ‘t_user‘@‘192.168.1.2‘ identified by ‘123456‘ with grant option;

查看狀態 show master status;

mysql> show master status;
+---------------+----------+--------------+-------------------------------+
| File                  | Position | Binlog_Do_DB | Binlog_Ignore_DB              |
+---------------+----------+--------------+-------------------------------+
| binlog.000005 |  639       | cmstop     | mysql,test,information_schema |
+---------------+----------+--------------+-------------------------------+
1 row in set (0.00 sec) 記下file,position的值二、從資料庫配置假設主要資料庫IP地址為:192.168.1.2修改my.cnf在[mysqld]下增加配置server-id=2replicate-do-db=cmstop(由於MySQL已經不支援master-host,master-user類似的參數 所以不在my.cnf添加這些配置)登陸從資料庫 配置host等資訊change master to master_host=‘192.168.1.1‘,master_user=‘t_user‘,master_password=‘123456‘,master_log_file=‘syslog.000005‘,master_log_pos=639;start slave;查看狀態  show slave status\G;看有無報錯若複製不成功 可修改許可權為(grant select,insert,update,delete,replication slave on *.* to ‘t_user‘@‘192.168.1.2‘ identified by ‘123456‘ with grant option;)     
相關文章

聯繫我們

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