keepalive配置mysql自動故障轉移

keepalive配置mysql自動故障轉移

原創 2016年02月29日 02:16:52
  • 2640

本文先配置了一個雙master環境,互爲主從,而後經過Keepalive配置了一個虛擬IP,客戶端經過虛擬IP鏈接master1,當master1宕機,自動切換到master2。一次只能鏈接其中一個master進行讀寫,因此是active-passive模式。html

一 Mysql主主複製搭建

 

1.1 實驗環境

兩臺機器事先都已經裝好了mysql單實例。 mysql


兩者的端口號須要保持一致,不然在最後用vip鏈接的時候,不能使用相同端口號鏈接。 sql

 

1.2 實驗步驟

 

1.2.1 修改配置文件

修改master1:數據庫

在[mysqld]下面添加:服務器

server-id =  1負載均衡

relay-log=/data/server/mysql_3307/binlog/ZabbixServer-relay-binide

relay-log-index=/data/server/mysql_3307/binlog/ZabbixServer-relay-bin.indexoop

auto-increment-offset = 1    測試

auto-increment-increment = 2 spa

log-slave-updates=true

 

修改master2:

在[mysqld]下面添加:

server-id =  3

relay-log =/data/server/mysql/binlog/single-relay-bin

relay-log-index=/data/server/mysql/binlog/single-relay-bin.index

auto-increment-offset = 2   

auto-increment-increment = 2 

log-slave-updates=true

 

添加auto-increment-offset那兩項,是爲了不在MySQL INSERT時主鍵衝突。

 

修改完後記得重啓mysql

 

1.2.2 建複製用戶

分別在兩臺mysql上執行

GRANT REPLICATION SLAVE ON *.* TO 'RepUser'@'%'identified by 'beijing';

1.2.3 指向master

兩臺服務器均爲新創建,且無其它寫入操做,各服務器只需記錄當前本身二進制日誌文件及事件位置,以之做爲另外的服務器複製起始位置便可。不然,須要先備份主庫,在備庫進行恢復,從而保持數據一致,而後再指向master。

Master1:

mysql> show master status;

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

| File            | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |

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

| mysql-bin.000001 |      302|              |                  |                   |

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

1 row in set (0.00 sec)

Master2:

mysql> show master status;

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

| File            | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |

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

| mysql-bin.000001 |      120 |              |                  |                   |

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

1 row in set (0.00 sec)

#Master1指向Master2

[sql]  view plain  copy
  1. CHANGE MASTER TO MASTER_USER='RepUser',MASTER_HOST='192.168.1.21',MASTER_PASSWORD='beijing',MASTER_PORT=3307,MASTER_LOG_FILE='mysql-bin.000001',MASTER_LOG_POS=120;  

#Master2指向Master1
[sql]  view plain  copy
  1. CHANGE MASTER TO MASTER_USER='RepUser',MASTER_HOST='192.168.1.22',MASTER_PASSWORD='beijing', MASTER_PORT=3307,MASTER_LOG_FILE='mysql-bin.000001',MASTER_LOG_POS=302;  


1.2.4 分別啓動slave

start slave ;

確保show slave status

Slave_IO_Running: Yes

Slave_SQL_Running: Yes

測試兩邊是否同步,略。

 

二:配置keepalived

 

1 keepalive安裝

分別在master1,master2上安裝keepalive

[plain]  view plain  copy
  1. yum install -y popt-devel  
  2. cd /usr/local/src  
  3. wget http://www.keepalived.org/software/keepalived-1.2.2.tar.gz  
  4. tar zxvf keepalived-1.2.2.tar.gz  
  5. cd keepalived-1.2.2  
  6. ./configure --prefix=/  
  7. make  
  8. make install  

#假如在執行./configure --prefix=/時報錯: OpenSSL is not properly installed on your system !!!Can notinclude OpenSSL headers files,則yum install openssl-devel -y

2 分別在master1,master2上新建檢查mysql腳本

vi /root/check_mysql.sh

內容以下

 

[plain]  view plain  copy
  1. MYSQL=/usr/local/mysql/bin/mysql  
  2. MYSQL_HOST=localhost  
  3. MYSQL_USER=root  
  4. MYSQL_PASSWORD=system@123  
  5.   
  6.   
  7. $MYSQL -h $MYSQL_HOST -u $MYSQL_USER -p$MYSQL_PASSWORD -e "show status;" >/dev/null 2>&1  
  8. #$mysqlclient --host=$host --port=$port --user=$user --password=$password  -e "show databases;" > /dev/null 2>&1  
  9. if [ $? == 0 ]  
  10. then  
  11.     echo " $host mysql login successfully "  
  12.     exit 0  
  13. else  
  14.     #echo " $host mysql login faild"  
  15.     /etc/init.d/keepalived stop  
  16.     exit 2  
  17. fi  


chmod +x /root/check_mysql.sh

3 修改配置文件

vi /etc/keepalived/keepalived.conf

master1和master2配置文件內容相同。

內容:

[plain]  view plain  copy
  1. #ConfigurationFile for keepalived  
  2. global_defs {  
  3. notification_email {                        ######定義接受郵件的郵箱  
  4.   wangjj@hrloo.com  
  5.         }  
  6.   notification_email_from jiankong@staff.tuge.com    ######定義發送郵件的郵箱  
  7.   smtp_server mail.tuge.com  
  8.   smtp_connect_timeout 10  
  9. }  
  10. vrrp_script check_mysql {                   ######定義監控mysql的腳本  
  11.      script "/root/check_mysql.sh"  
  12.      interval 2                             ######監控時間間隔  
  13.      weight 2                               ######負載參數  
  14.      }  
  15. vrrp_instance vrrptest {                 ######定義vrrptest實例  
  16.         state BACKUP              ######服務器狀態  
  17.   interface eth0                      ######使用的接口  
  18.         virtual_router_id 51                ######虛擬路由的標誌,一組lvs的虛擬路由標識必須相同,這樣才能切換  
  19.         priority 150                        ######服務啓動優先級,值越大,優先級越高,BACKUP 不能大於MASTER  
  20.         advert_int 1                        ######服務器之間的存活檢查時間  
  21. authentication {  
  22.         auth_type PASS                      ######認證類型  
  23.         auth_pass ufsoft       ######認證密碼,一組lvs 服務器的認證密碼必須一致  
  24. }  
  25. track_script {                              ######執行監控mysql進程的腳本  
  26.      check_mysql  
  27.      }  
  28. virtual_ipaddress {                         ######虛擬IP地址  
  29.          192.168.1.60  
  30. }  
  31. }  

 

這裏state不配置MASTER,且優先級同樣,是指望在MASTER1宕機後再恢復時,不主動將MASTER狀態搶過來,避免MySQL服務的波動。

因爲不存在使用lvs進行負載均衡,不須要配置虛擬服務器virtual server,下同。 

vi /etc/sysconfig/iptables

#注意,在兩臺機器上都要修改。

添加:

-A INPUT -d 192.168.1.60/32 -j ACCEPT

-A INPUT -d 224.0.0.18 -j ACCEPT #添加VRRP通信支持

注意:第一行中的192.168.1.60須要改爲你本身的vip。

service iptables restart

 

5 啓動keepalived

在master一、master2上分別啓動:
service keepalived start

分別執行ip addr命令,能夠在其中一臺機器上看到虛擬IP.如:

[root@slave1 keepalived]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_faststate UP qlen 1000
    link/ether 08:00:27:04:05:16 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.22/24 brd 192.168.1.255 scope global eth0
    inet 192.168.1.60/32 scope global eth0
    inet6 fe80::a00:27ff:fe04:516/64 scope link tentativedadfailed 
       valid_lft forever preferred_lft forever

說明虛擬vip連在了master1這臺機器上。

若是自動只鏈接到了master2,關閉master2的keepalived,再啓動,自動就鏈接到master1了。

如今均可以ping通虛擬ip了。

 

 

6 測試

中止master1服務器keepalived,檢查VIP是否切換到master2服務器(用ip addr命令驗證便可);
 

三 測試高可用環境是否配置成功

 

3.1 建容許遠程訪問的用戶

在master1,master2建立容許遠程訪問的用戶:

grant select,update,delete,insert on *.* to 'dandan' identified by 'dandan';

 

3.2 訪問虛擬IP

用一臺同網段的機器訪問經過vip訪問數據庫:

mysql -u dandan-pdandan -h 192.168.1.60 --port 3307

中止master1服務器的mysql,VIP切換到了master2服務器。

在master2上查看:

[plain]  view plain  copy
  1. mysql> showprocesslist;  
  2. +----+-------------+--------------------+------+---------+------+-----------------------------------------------------------------------------+------------------+  
  3. | Id | User        | Host               | db   | Command | Time | State                                                                      | Info             |  
  4. +----+-------------+--------------------+------+---------+------+-----------------------------------------------------------------------------+------------------+  
  5. |  3 | root        | localhost          | dba | Query   |    0 | init                                                                       | show processlist |  
  6. | 14 | systemuser |                    | NULL |Connect |  247 | Reconnecting after afailed master event read                               | NULL             |  
  7. | 15 | systemuser |                    | NULL |Connect |  207 | Slave has read all relaylog; waiting for the slave I/O thread to update it | NULL             |  
  8. | 90 |dandan      | 192.168.1.60:39995 |dba  | Sleep   |    8|                                                                            | NULL             |  
  9. +----+-------------+--------------------+------+---------+------+-----------------------------------------------------------------------------+------------------+  
看到了dandan的鏈接信息。
相關文章
相關標籤/搜索