MySQL主從複製配置

來源:互聯網
上載者:User

Mysql的主從複製至少是需要兩個Mysql的服務,當然Mysql的服務是可以分布在不同的伺服器上,也可以在一台伺服器上啟動多個服務。

(1)首先確保主從伺服器上的Mysql版本相同

(2)在主伺服器上,設定一個從資料庫的賬戶,使用REPLICATION SLAVE賦予許可權,如:

mysql> GRANT REPLICATION SLAVE ON *.* TO 'slave001'@'192.168.0.99' IDENTIFIED BY

'123456';

Query OK, 0 rows affected (0.13 sec)

(3)修改主要資料庫的設定檔my.cnf,開啟BINLOG,並設定server-id的值,修改之後必須重啟Mysql服務

[mysqld]

log-bin = /home/mysql/log/mysql-bin.log

server-id=1

(4)之後可以得到主伺服器當前二進位日誌名和位移量,這個操作的目的是為了在從資料庫啟動後,從這個點開始進行資料的恢複

mysql> show master status\G;

*************************** 1. row ***************************

File: mysql-bin.000003

Position: 243

Binlog_Do_DB:

Binlog_Ignore_DB:

1 row in set (0.00 sec)

(5)好了,現在可以停止主要資料的的更新操作,並產生主要資料庫的備份,我們可以通過mysqldump到處資料到從資料庫,當然了,你也可以直接用cp命令將資料檔案複製到從資料庫去

注意在匯出資料之前先對主要資料庫進行READ LOCK,以保證資料的一致性

mysql> flush tables with read lock;

Query OK, 0 rows affected (0.19 sec)

之後是mysqldump

mysqldump -h127.0.0.1 -p3306 -uroot -p test > /home/chenyz/test.sql

最好在主要資料庫備份完畢,恢複寫操作

mysql> unlock tables;

Query OK, 0 rows affected (0.28 sec)

(6)將剛才主要資料備份的test.sql複製到從資料庫,進行匯入

(7)接著修改從資料庫的my.cnf,增加server-id參數,指定複製使用的使用者,主要資料庫伺服器的ip,連接埠以及開始執行複製日誌的檔案和位置

[mysqld]

server-id=2

log_bin = /var/log/mysql/mysql-bin.log

master-host =192.168.1.100

master-user=test

master-pass=123456

master-port =3306

master-connect-retry=60

replicate-do-db =test 

(8)在從伺服器上,啟動slave進程

mysql> start slave;

(9)在從伺服器進行show salve status驗證

mysql> SHOW SLAVE STATUS\G

*************************** 1. row ***************************

Slave_IO_State: Waiting for master to send event

Master_Host: localhost

Master_User: root

Master_Port: 3306

Connect_Retry: 3

Master_Log_File: mysql-bin.003

Read_Master_Log_Pos: 79

Relay_Log_File: gbichot-relay-bin.003

Relay_Log_Pos: 548

Relay_Master_Log_File: mysql-bin .003

Slave_IO_Running: Yes

Slave_SQL_Running: Yes

(10)好了,現在可以在我們的主伺服器做一些更新的操作,然後在從伺服器查看是否已經更新

----------------------------------------

轉自:http://www.blogjava.net/dongbule/archive/2010/08/22/329602.html

相關文章

聯繫我們

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