MySQL主主互备结合keepalived实现高可用

原文:http://7424593.blog.51cto.com/7414593/1741717

试验环境:

master:192.168.1.210(CentOS6.5)

slave:192.168.1.211(CentOS6.5)

VIP:192.168.1.208

MySQL主主互备模式配置

step1:Master服务的/etc/my.cnf配置

1
2
3
4
5
6
7
8
9
10
11
12
[mysqld]
basedir = /usr/local/mysql
datadir = /var/lib/mysql
port = 3306
socket = /var/lib/mysql/mysql.sock
 
server_id = 1
log-bin = mysql-bin
relay-log = mysql-relay-bin
replicate-wild-ignore-table=mysql.%   #指定不需要复制的库,mysql.%表示mysql库下的所有对象
replicate-wild-ignore-table=test.%
replicate-wild-ignore-table=information_schema.%

step2:Slave服务的/etc/my.cnf配置

1
2
3
4
5
6
7
8
9
10
11
12
[mysqld]
basedir = /usr/local/mysql
datadir = /var/lib/mysql
port = 3306
socket = /var/lib/mysql/mysql.sock
 
server_id = 2
log-bin = mysql-bin
relay-log = mysql-relay-bin
replicate-wild-ignore-table=mysql.%
replicate-wild-ignore-table=test.%
replicate-wild-ignore-table=information_schema.%

step3:重启两台主从mysql服务

1
2
3
4
5
6
[root@master ~]# service mysqld restart
Shutting down MySQL..                                      [  OK  ]
Starting MySQL.                                            [  OK  ]
[root@slave ~]# service mysqld restart
Shutting down MySQL..                                      [  OK  ]
Starting MySQL.                                            [  OK  ]

step4:查看主从的log-bin日志状态

记录File和Position的值

1
2
3
4
5
6
7
[root@master ~]# mysql -uroot -ppasswd -e 'show master status'
Warning: Using a password on the command line interface can be insecure.
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 |      414 |              |                  |                   |
+------------------+----------+--------------+------------------+-------------------+
1
2
3
4
5
6
7
[root@slave ~]# mysql -uroot -ppasswd -e 'show master status'
Warning: Using a password on the command line interface can be insecure.
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 |      414 |              |                  |                   |
+------------------+----------+--------------+------------------+-------------------+

step5:创建主从同步replication用户

1、master

1
2
3
4
5
6
7
8
9
10
mysql> grant replication slave on *.* to 'replication'@'192.168.1.211' identified by 'replication';
mysql> flush privileges;
mysql> change master to
    -> master_host='192.168.1.211',
    -> master_user='replication',
    -> master_password='replication',
    -> master_port=3306,
    -> master_log_file='mysql-bin.000001',
    -> master_log_pos=414;
mysql> start slave;

2、slave

1
2
3
4
5
6
7
8
9
10
mysql> grant replication slave on *.* to 'replication'@'192.168.1.210' identified by 'replication';
mysql> flush privileges;
mysql> change master to
    -> master_host='192.168.1.210',
    -> master_user='replication',
    -> master_password='replication',
    -> master_port=3306,
    -> master_log_file='mysql-bin.000001',
    -> master_log_pos=414;
mysql> start slave;

同步失败可能需要停止或重设slave

mysql> stop slave;

mysql> reset slave;

step6:分别在master和slave上查看slave状态,验证是否成功配置主主复制模式

1、master

2、slave

slave状态同步过程可能需要重启MySQL服务

[root@master ~]# service mysqld restart
[root@slave ~]# service mysqld restart

step7:验证,在master上创建test1数据库,slave上查看是否同步

1、master上创建test1数据库

1
[root@master ~]# mysql -uroot -ppasswd -e 'create database test1'

2、slave上查看是否同步创建test1

1
2
3
4
5
6
7
8
9
[root@slave ~]# mysql -uroot -ppasswd -e 'show databases'
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test1              |
+--------------------+

安装和配置keepalived实现MySQL双主高可用

step1:安装keepalived

方法一:使用yum安装keepalived,需要安装epel-release源

[root@master ~]# rpm -ivh http://mirrors.opencas.cn/epel/6/i386/epel-release-6-8.noarch.rpm
[root@slave ~]# rpm -ivh http://mirrors.opencas.cn/epel/6/i386/epel-release-6-8.noarch.rpm

[root@slave ~]# yum -y install keepalived

查看keepalived相关目录

1
2
3
4
5
6
[root@slave ~]# ls /usr/sbin/keepalived 
/usr/sbin/keepalived
[root@slave ~]# ls /etc/init.d/keepalived 
/etc/init.d/keepalived
[root@slave ~]# ls /etc/keepalived/keepalived.conf 
/etc/keepalived/keepalived.conf

方法二:从keepalived官方网站http://www.keepalived.org下载源代码包编译安装

1、下载keepalived最新版

[root@master ~]# wget http://www.keepalived.org/software/keepalived-1.2.19.tar.gz

[root@slave ~]# wget http://www.keepalived.org/software/keepalived-1.2.19.tar.gz

2、安装keepalived依赖软件包

[root@master ~]# yum install  pcre-devel openssl-devel popt-devel libnl-devel

3、解压并安装keepalived

1
2
3
4
5
[root@master ~]# tar zxf keepalived-1.2.19.tar.gz 
[root@master ~]# cd keepalived-1.2.19
 
[root@master keepalived-1.2.19]# ./configure --prefix=/usr/local/keepalived 
--sysconf=/etc --with-kernel-dir=/usr/src/kernels/2.6.32-431.el6.x86_64

1
2
[root@master keepalived-1.2.19]# make
[root@master keepalived-1.2.19]# make install

查看keepalived相关的文件

1
2
3
4
[root@master keepalived-1.2.19]# ls /etc/keepalived/
keepalived.conf  samples
[root@master keepalived-1.2.19]# ls /etc/init.d/keepalived 
/etc/init.d/keepalived

链接/usr/local/keepalived/sbin/keepalived到/sbin/目录

1
[root@master keepalived-1.2.19]# ln -s /usr/local/keepalived/sbin/keepalived /sbin/

设置keepalived启动级别

1
2
[root@master keepalived-1.2.19]# chkconfig --add keepalived
[root@master keepalived-1.2.19]# chkconfig --level 35 keepalived on

step2:配置keepalived

1、Master的keepalived.conf配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
! Configuration File for keepalived
 
global_defs {
   notification_email {
     root@huangmingming.cn
     741616710@qq.com
   }
   notification_email_from keepalived@localhost  
   smtp_server 127.0.0.1
   smtp_connect_timeout 30
   router_id LVS_DEVEL
}
 
vrrp_instance HA_1 {
    state BACKUP                #master和slave都配置为BACKUP
    interface eth0              #指定HA检测的网络接口
    virtual_router_id 80        #虚拟路由标识,主备相同
    priority 100                #定义优先级,slave设置90
    advert_int 1                #设定master和slave之间同步检查的时间间隔
    nopreempt                   #不抢占模式。只在优先级高的机器上设置即可
    authentication {
        auth_type PASS
        auth_pass 1111
    }
 
    virtual_ipaddress {                 #设置虚拟IP,可以设置多个,每行一个
        192.168.1.208/24 dev eth0       #MySQL对外服务的IP,即VIP
    }
}
 
virtual_server 192.168.1.208 3306 {
    delay_loop 2                    #每隔2秒查询real server状态
    lb_algo wrr                     #lvs 算法
    lb_kinf DR                      #LVS模式(Direct Route)
    persistence_timeout 50
    protocol TCP
 
    real_server 192.168.1.210 3306 {    #监听本机的IP
        weight 1
        notify_down /usr/local/keepalived/bin/mysql.sh
        TCP_CHECK {
        connect_timeout 10         #10秒无响应超时
        bingto 192.168.1.208
        nb_get_retry 3
        delay_before_retry 3
        connect_port 3306
        }
    }
 
}

keepalived检测脚本,当其中一台MySQL服务出现故障down掉时,实现自动切换到正常的MySQL服务器继续提供服务

1
2
3
[root@master ~]# vim /usr/local/keepalived/bin/mysql.sh
#!/bin/bash
pkill keepalived

 

2、Slave的keepalived.conf配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
! Configuration File for keepalived
 
global_defs {
   notification_email {
     root@huangmingming.cn
     741616710@qq.com
   }
   notification_email_from keepalived@localhost
   smtp_server 127.0.0.1
   smtp_connect_timeout 30
   router_id LVS_DEVEL
}
 
vrrp_instance HA_1 {
    state BACKUP                #master和slave都配置为BACKUP
    interface eth0              #指定HA检测的网络接口
    virtual_router_id 80        #虚拟路由标识,主备相同
    priority 90                #定义优先级,slave设置90
    advert_int 1                #设定master和slave之间同步检查的时间间隔
    authentication {
        auth_type PASS
        auth_pass 1111
    }
 
    virtual_ipaddress {                 #设置虚拟IP,可以设置多个,每行一个
        192.168.1.208/24 dev eth0       #MySQL对外服务的IP,即VIP
    }
}
 
virtual_server 192.168.1.208 3306 {
    delay_loop 2
    lb_algo wrr
    lb_kinf DR
    persistence_timeout 50
    protocol TCP
 
    real_server 192.168.1.211 3306 {    #监听本机的IP
        weight 1
        notify_down /usr/local/mysql/bin/mysql.sh
        TCP_CHECK {
        connect_timeout 10
        bingto 192.168.1.208            
        nb_get_retry 3
        delay_before_retry 3
        connect_port 3306
        }
    }
 
}

step3:授权VIP的root用户权限

授权远程主机可以通过VIP登录MySQL,并测试数据复制功能

1
2
mysql> grant all on *.* to root@'192.168.1.208' identified by '741616710';
mysql> flush privileges;

step4:测试keepalived高可用功能

1、远程主机登录通过VIP192.168.1.208登录MySQL,查看MySQL连接状态

1
2
3
4
5
6
7
mysql> show variables like 'hostname%';
+---------------+--------+
| Variable_name | Value  |
+---------------+--------+
hostname      | master |
+---------------+--------+
1 row in set (0.00 sec)

从上面查看的结果看样看出在正常情况下连接的是master

2、故障测试,停止master的MySQL服务,再次查看是否转移至slave服务器上

1
2
[root@master ~]# service mysqld stop
Shutting down MySQL.... SUCCESS!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mysql> show variables like 'hostname%';
ERROR 2013 (HY000): Lost connection to MySQL server during query
mysql> show variables like 'hostname%';
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id:    1268
Current database: *** NONE ***
 
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
hostname      | slave |
+---------------+-------+
1 row in set (0.01 sec)

由测试结果可以看出,keepalived成功转移MySQL服务

 

(转)MySQL主主互备结合keepalived实现高可用的更多相关文章

  1. 实现基于Keepalived主从高可用集群网站架构

    背景 上一期我们实现了基于lvs负载均衡集群的电商网站架构,随着业务的发展,网站的访问量越来越大,网站访问量已经从原来的1000QPS,变为3000QPS,目前业务已经通过集群LVS架构可做到随时拓展 ...

  2. 一次 MySQL 误操作导致的事故,「高可用」都顶不住了!

    这是悟空的第 152 篇原创文章 官网:www.passjava.cn 你好,我是悟空. 上次我们项目不是把 MySQL 高可用部署好了么,MySQL 双主模式 + Keepalived,来保证高可用 ...

  3. keepalived工作原理和配置说明 腾讯云VPC内通过keepalived搭建高可用主备集群

    keepalived工作原理和配置说明 腾讯云VPC内通过keepalived搭建高可用主备集群 内网路由都用mac地址 一个mac地址绑定多个ip一个网卡只能一个mac地址,而且mac地址无法改,但 ...

  4. keepalived+Nginx实现主备保障Nginx的高可用。

    1.什么是keepalived? Keepalived是集群管理中保证集群高可用的一个服务软件,用来防止单点故障. Keepalived的作用是检测web服务器的状态,如果有一台web服务器死机,或工 ...

  5. haproxy+keepalived实现高可用负载均衡

    软件负载均衡一般通过两种方式来实现:基于操作系统的软负载实现和基于第三方应用的软负载实现.LVS就是基于Linux操作系统实现的一种软负载,HAProxy就是开源的并且基于第三应用实现的软负载. HA ...

  6. Nginx系列二:(Nginx Rewrite 规则、Nginx 防盗链、Nginx 动静分离、Nginx+keepalived 实现高可用)

    一.Nginx Rewrite 规则 1. Nginx rewrite规则 Rewrite规则含义就是某个URL重写成特定的URL(类似于Redirect),从某种意义上说为了美观或者对搜索引擎友好, ...

  7. docker 部署nginx 使用keepalived 部署高可用

    一.体系架构 在Keepalived + Nginx高可用负载均衡架构中,keepalived负责实现High-availability (HA) 功能控制前端机VIP(虚拟网络地址),当有设备发生故 ...

  8. haproxy+keepalived实现高可用负载均衡(转)

      软件负载均衡一般通过两种方式来实现:基于操作系统的软负载实现和基于第三方应用的软负载实现.LVS就是基于Linux操作系统实现的一种软负载,HAProxy就是开源的并且基于第三应用实现的软负载. ...

  9. LVS+KeepAlived+Nginx高可用实现方案

    文章目录概念LVSKeepAlived为什么要使用准备软件安装KeepAlived 安装源码安装yum安装服务启动.重启.关闭安装ipvsadmnginx安装防火墙(iptables)防火墙配置(方式 ...

随机推荐

  1. 图形查询属性(IdentifyTask实现查询)//查询本地服务

    主页代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <tit ...

  2. python使用smtplib和email发送腾讯企业邮箱邮件

    公司每天要发送日报,最近没事搞了一下如何自动发邮件,用的是腾讯企业邮箱,跟大家分享一下我的研究过程吧. 以前弄的发邮件的是用qq邮箱发的,当时在网上查资料最后达到了能发图片,网页,自定义收件人展示,主 ...

  3. int *a[] 与(int *)a【5】的区别

    *a[5] 是指针数组  可以指向5个值 (*a)[5]  是一个指针,但这个指针只能指向包含5个元素的一维数组 a是一个数组,每个元素都是个指针. b是一个指针,指向一个数组 1.int *a[5] ...

  4. OpenSSL命令---crl2pkcs7

    用途: 本命令根据CRL或证书来生成pkcs#7消息. 用法: openssl crl2pkcs7 [-inform PEM|DER ] [-outform PEM|DER ] [-in filena ...

  5. 安装git出现templates not found的问题

    背景 goods.api需要在新机器上部署,该机器上没有安装git,需要安装git,查询git版本为2.4.5-1.el6 ,使用yum 一顿安装后,执行git clone命令告知warning: t ...

  6. 推荐两款国人开发的html前段框架

    1.http://www.h-ui.net/  H-ui前端框架官方网站 2.http://www.builive.com/  BUI是基于JQuery的富客户端UI框架

  7. API Test Postman接口测试之高级篇1

    API Test  Postman接口测试之高级篇1 一.postman中的请求参数简介: 1.请求参数简介: 点击params下面会出现key,value等信息,这里填写的会自动追加在url地址后面 ...

  8. VS2013如何添加LIb库及头文件的步骤

    在VS工程中,添加c/c++工程中外部头文件及库的基本步骤: 1.添加工程的头文件目录:工程---属性---配置属性---c/c++---常规---附加包含目录:加上头文件存放目录. 2.添加文件引用 ...

  9. python 取出字典的键或者值/如何删除一个字典的键值对/如何遍历字典

    先定义一个字典并直接进行初始化赋值 my_dict = dict(name="lowman", age=45, money=998, hourse=None) 1.取出该字典所有的 ...

  10. 网卡NAT方式下虚拟机安装FTP服务

    在windows8下安装Oracle VM VirtualBox虚拟机,虚拟机中安装的CentOS操作系统,在CentOS中搭建LNMP环境,安装vsftpd服务器,宿主机在phpStorm编程,将代 ...