MySQL5.1版本的主從複製搭建

MySQL5.1版本的主從複製搭建        mysql

       

【備註】:sql

主機192.168.250.20數據庫

備機192.168.250.40服務器

主從複製ide

1主機上面已經有了MySQL5.1.53-log.svn

2備機上沒有mysql數據庫,須要在備機上安裝MySQL5.1.53-log軟件,具體參考svn文檔「system\mysql\document\IT_SYS_MySQL_Installation.docx」。函數

3再次肯定主服務器與從服務器的MySQL版本一致測試

 Showvariables like 'version';spa

4在主服務器上位服務器設置一個鏈接帳號,賦予replication slave權限。orm

MySQL> grant replication slave, super,reload  on *.* to 'rel'@'192.168.250.40 identified by'slavepwd1229';

5 確保主服務器上的my.cnf文件的[mysqld]部分包括一個log-bin選項。以下:

  [mysqld]

  ………

   log-bin=mysql-bin

   server-id=1

binlog-ignore-db=mysql
binlog-ignore-db=information_schema

6  確保從服務器,確保在my.cnf文件中添加如下的行:

  [mysqld]

log-bin=mysql-bin

   server-id=2

log_slave_updates = 1

read_only=1 # 這個參數表示只有supser

relay-log=relay-bin

relay-log-index=relay-bin

replicate-ignore-db=mysql

replicate-ignore-db=information_schema

log_bin_trust_function_creators 1

7 主服務器重啓(若是配置了master服務也能夠不重啓),從服務器重啓

n  主服務器已經運行很長時間,binlog不是從0001開始。

8 在主服務器上查看master狀態

mysql> show master status;

+------------------+-----------+--------------+------------------+

| File             | Position  | Binlog_Do_DB | Binlog_Ignore_DB |

+------------------+-----------+--------------+------------------+

| mysql-bin.000075 | 875653787 |              |                  |

+------------------+-----------+--------------+------------------+

1 row in set (0.00 sec)

9  啓動從服務器,設置複製斷點

先從250.20上面copy數據文件到250.40上面,而後chown數據權限,最後刷新表

Mysql> flush tables;

102上面導入全部的存儲過程以及存儲函數:

/usr/local/mysql/bin/mysqldump -h192.168.250.20-uroot -pguNNhtqhjUnfky6ahyVh -ntd -R csf_maec > /tmp/cm20101230.sql;

/usr/local/mysql/bin/mysqldump -hlocalhost-uroot -pguNNhtqhjUnfky6ahyVh -ntd -R csf > /tmp/csf20101230.sql;

/usr/local/mysql/bin/mysqldump -hlocalhost-uroot -pguNNhtqhjUnfky6ahyVh -ntd -R csf_pub > /tmp/csf_pub20101230.sql;

/usr/local/mysql/bin/mysqldump -hlocalhost-uroot -pguNNhtqhjUnfky6ahyVh -ntd -R reuters_interface >/tmp/reuers_inter20101230.sql;  

Mysql> change master tomaster_user='rel',

master_password=' slavepd1012301151' ,

master_host='192.168.250.20’,

master_log_file='mysql-bin.000075',

master_log_pos=875653787;

mysql> start slave;

mysql> show slave status \G;

10若是複製狀態Slave_IO_RunningSlave_SQL_Running都爲Yes,說明覆制已經配置正確,以下:

     Slave_IO_Running: Yes

     Slave_SQL_Running: Yes

Ok,下面insertdeleteupdatedroptruncate等等都測試成功。

意外1

 主機停機,備機正常:主機重啓以後,備機仍然能夠正常進行復制同步。

意外2

 主機不停機,備機停機:備機重啓後,備機開啓手工複製功能以下:

Mysql> start slave;

意外3

 主機停機,備機停機:

(1) 先開啓slave,啓動mysql,進入mysql

Mysql> stop slave;

Mysql> show slave status \G;記下最後一個posbinlog值爲mysql-bin.000079875653787

(2) 從新指定master目標:

Mysql> change master tomaster_user='rel',

master_password=' slavepd1012301151' ,

master_host='192.168.250.20,

master_log_file='mysql-bin.000079',

master_log_pos=875653787;

(3) 啓動master

(4) 進入slave,啓動複製功能。

相關文章
相關標籤/搜索