mysql同城两中心高可用_【Keepalived+MySQL】MySQL双主互备+高可用

本文详细介绍了如何实现MySQL同城两中心的双主互备高可用配置,包括MySQL配置、主主互备设置、Keepalived的安装与配置。通过Keepalived实现VIP的自动切换,确保在单个数据库服务故障时,业务不受影响。
摘要由CSDN通过智能技术生成

一、基本信息说明

【DB1】

IP: 192.168.102.144

hostname: LVS-Real1

【DB2】

IP: 192.168.102.145

hostname: LVS-Real2

【VIP】

IP:  192.168.102.146

二、MySQL配置主主互备

1.配置DB1和DB2的/etc/my.cnf

【DB1】

[root@LVS-Real1 ~]# more /etc/my.cnf

[client]

port= 3306socket= /tmp/mysql.sock

[mysqld]

user=mysql

port= 3306server_id = 1#需保证唯一性

socket=/tmp/mysql.sock

basedir=/usr/local/mysql

datadir=/usr/local/mysql/data

pid-file=/usr/local/mysql/data/mysqld.pid

log-error=/usr/local/mysql/log/mysql-error.log

log-bin=mysql-bin #开启二进制日志

relay-log=mysql-relay-bin

replicate-wild-ignore-table=mysql.% #忽略复制mysql数据库下的所有对象,以下依次类推replicate-wild-ignore-table=test.%replicate-wild-ignore-table=information_schema.%

【DB2】

[root@LVS-Real2 ~]# more /etc/my.cnf

[client]

port= 3306socket= /tmp/mysql.sock

[mysqld]

user=mysql

port= 3306server_id = 2 #需保证唯一性socket=/tmp/mysql.sock

basedir=/usr/local/mysql

datadir=/usr/local/mysql/data

pid-file=/usr/local/mysql/data/mysqld.pid

log-error=/usr/local/mysql/log/mysql-error.log

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.%

2.手动同步数据库

如果DB1上有数据,在执行主主互备之前,需要将DB1和DB2上两个数据库保持同步,首先在DB1上执行备份,执行如下语句:

mysql>flush tables with read lock;

在关闭上述终端的情况下,新开启一个终端打包数据库。

3.创建复制用户并授权

首先在【DB1】上的MySQL库中创建复制用户

mysql>grant replication slave on *.* to 'repl_user'@'192.168.102.145' identified by 'repl_passwd';

在【DB1】上执行如下语句,并记下File和Position的值

mysql>show master status;+------------------+----------+--------------+------------------+-------------------+

| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |

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

| mysql-bin.000002 | 1004| | | |

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

1 row in set (0.02 sec)

然后在【DB2】上将DB1设为自己的主服务器,如下:

change master to \

master_host='192.168.102.144', #DB1的IP地址

master_user='repl_user',

master_password='repl_passwd',

master_log_file='mysql-bin.000002', #DB1上查询出的File值

master_log_pos=1004; #DB1上查询出的Position值

在【DB2】上启动slave服务,并查询slave的运行状态

mysql>start slave;

查看Slave的运行状态,这里需要关注Slave_IO_Running和Slave_SQL_Running.这两个就是在Slave节点上运行的主从复制线程,正常情况下两个值都应该为Yes.

mysql>show slave status\G;*************************** 1. row ***************************Slave_IO_State: Waitingfor master to send eventMaster_Host:192.168.102.144Master_User: repl_user

Master_Port:3306Connect_Retry:60Master_Log_File: mysql-bin.000008Read_Master_Log_Pos:154Relay_Log_File: mysql-relay-bin.000040Relay_Log_Pos:320Relay_Master_Log_File: mysql-bin.000008Slave_IO_Running: Yes

Slave_SQL_Running: Yes

Replicate_Do_DB:

Replicate_Ignore_DB:

Replicate_Do_Table:

Replicate_Ignore_Table:

Replicate_Wild_Do_Table:

Replicate_Wild_Ignore_Table: mysql.%,test.%,information_schema.%Last_Errno:0Last_Error:

Skip_Counter:0Exec_Master_Log_Pos:154Relay_Log_Space:527Until_Condition: None

Until_Log_File:

Until_Log_Pos:0Master_SSL_Allowed: No

Master_SSL_CA_File:

Master_SSL_CA_Path:

Master_SSL_Cert:

Master_SSL_Cipher:

Master_SSL_Key:

Seconds_Behind_Master:0Master_SSL_Verify_Server_Cert: No

Last_IO_Errno:0Last_IO_Error:

Last_SQL_Errno:0Last_SQL_Error:

Replicate_Ignore_Server_Ids:

Master_Server_Id:1Master_UUID: 64e9b20f-2eee-11e8-ab62-000c29889112

Master_Info_File:/usr/local/mysql/data/master.info

SQL_Delay:0SQL_Remaining_Delay: NULL

Slave_SQL_Running_State: Slave has read all relay log; waitingformore updates

Master_Retry_Count:86400Master_Bind:

Last_IO_Error_Timestamp:

Last_SQL_Error_Timestamp:

Master_SSL_Crl:

Master_SSL_Crlpath:

Retrieved_Gtid_Set:

Executed_Gtid_Set:

Auto_Position:0Replicate_Rewrite_DB:

Channel_Name:

Master_TLS_Version:1 row in set (0.00 sec)

接下来开始配置从DB2到DB1的MySQL主从复制,这个配置过程和上面一样。

首先在【DB2】上的MySQL库中创建复制用户,并查看数据库状态,记下File和Position值。

grant replication slave on *.* to 'repl_user'@'192.168.102.144' identified by 'repl_passwd';

mysql>show master status;+------------------+----------+--------------+------------------+-------------------+

| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |

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

| mysql-bin.000002 | 1004| | | |

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

1 row in set (0.02 sec)

然后在【DB1】上将DB2设为自己的主服务器

change master to \

master_host='192.168.102.145',

master_user='repl_user',

master_password='repl_passwd',

master_log_file='mysql-bin.000002',

master_log_pos=1004;

在【DB1】上启动slave服务

mysql>start slave;

在【DB1】查看Slave的运行状态,这里需要关注Slave_IO_Running和Slave_SQL_Running.这两个就是在Slave节点上运行的主从复制线程,正常情况下两个值都应该为Yes.

mysql>show slave status\G;*************************** 1. row ***************************Slave_IO_State: Waitingfor master to send eventMaster_Host:192.168.102.145Master_User: repl_user

Master_Port:3306Connect_Retry:60Master_Log_File: mysql-bin.000016Read_Master_Log_Pos:154Relay_Log_File: mysql-relay-bin.000040Relay_Log_Pos:367Relay_Master_Log_File: mysql-bin.000016Slave_IO_Running: Yes

Slave_SQL_Running: Yes

Replicate_Do_DB:

Replicate_Ignore_DB:

Replicate_Do_Table:

Replicate_Ignore_Table:

Replicate_Wild_Do_Table:

Replicate_Wild_Ignore_Table: mysql.%,test.%,information_schema.%Last_Errno:0Last_Error:

Skip_Counter:0Exec_Master_Log_Pos:154Relay_Log_Space:740Until_Condition: None

Until_Log_File:

Until_Log_Pos:0Master_SSL_Allowed: No

Master_SSL_CA_File:

Master_SSL_CA_Path:

Master_SSL_Cert:

Master_SSL_Cipher:

Master_SSL_Key:

Seconds_Behind_Master:0Master_SSL_Verify_Server_Cert: No

Last_IO_Errno:0Last_IO_Error:

Last_SQL_Errno:0Last_SQL_Error:

Replicate_Ignore_Server_Ids:

Master_Server_Id:2Master_UUID: a35a032d-2ef8-11e8-bd3c-000c2910f959

Master_Info_File:/usr/local/mysql/data/master.info

SQL_Delay:0SQL_Remaining_Delay: NULL

Slave_SQL_Running_State: Slave has read all relay log; waitingformore updates

Master_Retry_Count:86400Master_Bind:

Last_IO_Error_Timestamp:

Last_SQL_Error_Timestamp:

Master_SSL_Crl:

Master_SSL_Crlpath:

Retrieved_Gtid_Set:

Executed_Gtid_Set:

Auto_Position:0Replicate_Rewrite_DB:

Channel_Name:

Master_TLS_Version:1 row in set (0.00 sec)

至此,主主复制配置完毕;

三、Keepalived的安装与配置

1.下载Keepalived

http://www.keepalived.org/download.html

2.安装Keepalived

#1.安装依赖包

yum-y install gcc openssl-devel libnfnetlink libnfnetlink-devel

#2.开始安装

tar-xvf keepalived-1.2.18.tar.gz

cd keepalived-1.2.18./configure --prefix=/usr/local/keepalived

make

make install

3.复制文件到相应目录

cp /usr/local/keepalived/sbin/keepalived /usr/sbin/cp/usr/local/keepalived/etc/rc.d/init.d/keepalived /etc/init.d/cp/usr/local/keepalived/etc/sysconfig/keepalived /etc/sysconfig/mkdir -p /etc/keepalived

cp-r /usr/local/keepalived/etc/keepalived/keepalived.conf /etc/keepalived

4.配置keepalived.conf

【DB1】

[root@LVS-Real1 keepalived]# more /etc/keepalived/keepalived.conf

global_defs {

notification_email {

guanyy0911@163.com

}

notification_email_from guanyy0911@163.com

smtp_server127.0.0.1smtp_connect_timeout30router_id MySQL-ha

}

vrrp_instance VI_1 {

state BACKUPinterfaceeth0

virtual_router_id51priority 100#设置优先级

advert_int1nopreempt #设置不抢占,当因为故障切换到DB2后,如果DB1恢复,则不再切回DB1,直到DB2出现故障才切换回DB1

authentication {

auth_type PASS

auth_pass1111}

virtual_ipaddress {192.168.102.146#设置虚拟IP,即VIP

}

}

virtual_server192.168.102.146 3306{

delay_loop2lb_algo wrr

lb_kind DR

persistence_timeout60protocol TCP

real_server192.168.102.144 3306{

weight3notify_down/etc/keepalived/mysql.sh

TCP_CHECK {

connect_timeout10nb_get_retry3delay_before_retry3connect_port3306}

}

}

mysql.sh脚本的内容如下:

[root@LVS-Real1 keepalived]# more /etc/keepalived/mysql.sh

#!/bin/bash

pkill keepalived

说明:该脚本主要用来当MySQL服务关闭时杀掉keepalived进程,进而达到切换的目的。

【DB2】

[root@LVS-Real2 keepalived]# more /etc/keepalived/keepalived.conf

global_defs {

notification_email {

guanyy0911@163.com

}

notification_email_from guanyy0911@163.com

smtp_server127.0.0.1smtp_connect_timeout30router_id MySQL-ha

}

vrrp_instance VI_1 {

state BACKUPinterfaceeth0

virtual_router_id51priority 90#设置优先级,要比DB1低

advert_int1authentication {

auth_type PASS

auth_pass1111}

virtual_ipaddress {192.168.102.146#设置虚拟IP,即VIP

}

}

virtual_server192.168.102.146 3306{

delay_loop2lb_algo wrr

lb_kind DR

persistence_timeout60protocol TCP

real_server192.168.102.145 3306{

weight3notify_down/etc/keepalived/mysql.sh

TCP_CHECK {

connect_timeout10nb_get_retry3delay_before_retry3connect_port3306}

}

}

mysql.sh脚本的内容如下:

[root@LVS-Real1 keepalived]# more /etc/keepalived/mysql.sh

#!/bin/bash

pkill keepalived

说明:该脚本主要用来当MySQL服务关闭时杀掉keepalived进程,进而达到切换的目的。

5.启动keepalived

service keepalived start

5.检查并测试VIP是否可用

如果在/var/log/messages文件中有如下信息,说明VIP已经可用。

Mar 24 13:40:49 LVS-Real1 Keepalived[42692]: Stopping Keepalived v1.2.18 (03/24,2018)

Mar24 13:40:49 LVS-Real1 Keepalived[42829]: Starting Keepalived v1.2.18 (03/24,2018)

Mar24 13:40:49 LVS-Real1 Keepalived[42830]: Starting Healthcheck child process, pid=42832Mar24 13:40:49 LVS-Real1 Keepalived[42830]: Starting VRRP child process, pid=42833Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: Netlink reflector reports IP 192.168.102.144added

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: Netlink reflector reports IP fe80::20c:29ff:fe88:9112added

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: Registering Kernel netlink reflector

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: Registering Kernel netlink command channel

Mar24 13:40:49 LVS-Real1 Keepalived_healthcheckers[42832]: Netlink reflector reports IP 192.168.102.144added

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: Registering gratuitous ARP shared channel

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: Opening file '/etc/keepalived/keepalived.conf'.

Mar24 13:40:49 LVS-Real1 Keepalived_healthcheckers[42832]: Netlink reflector reports IP fe80::20c:29ff:fe88:9112added

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: Configuration is using : 69127Bytes

Mar24 13:40:49 LVS-Real1 Keepalived_healthcheckers[42832]: Registering Kernel netlink reflector

Mar24 13:40:49 LVS-Real1 Keepalived_healthcheckers[42832]: Registering Kernel netlink command channel

Mar24 13:40:49 LVS-Real1 Keepalived_healthcheckers[42832]: Opening file '/etc/keepalived/keepalived.conf'.

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: Using LinkWatch kernel netlink reflector...

Mar24 13:40:49 LVS-Real1 Keepalived_healthcheckers[42832]: Configuration is using : 11737Bytes

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: VRRP_Instance(VI_1) Entering BACKUP STATE

Mar24 13:40:49 LVS-Real1 Keepalived_vrrp[42833]: VRRP sockpool: [ifindex(2), proto(112), unicast(0), fd(10,11)]

Mar24 13:40:49 LVS-Real1 Keepalived_healthcheckers[42832]: Using LinkWatch kernel netlink reflector...

此时从外部的客户端可以ping通该VIP.

C:\Users\Sakura>ping 192.168.102.146正在 Ping192.168.102.146 具有 32字节的数据:

来自192.168.102.146 的回复: 字节=32 时间<1ms TTL=64来自192.168.102.146 的回复: 字节=32 时间<1ms TTL=64来自192.168.102.146 的回复: 字节=32 时间<1ms TTL=64来自192.168.102.146 的回复: 字节=32 时间<1ms TTL=64

192.168.102.146的 Ping 统计信息:

数据包: 已发送= 4,已接收 = 4,丢失 = 0 (0%丢失),

往返行程的估计时间(以毫秒为单位):

最短= 0ms,最长 = 0ms,平均 = 0ms

6. 同时启动DB1和DB2上的mysql和keepalived服务

service mysql.server start

service keepalived start

7.从第三方客户端通过VIP来登录数据库。看是否可以登录。

我们通过navicat进行登录,发现是可以通过VIP登录。之后查询当前使用是哪个数据库。如下图查询到,使用的是DB1.

cc2be89d34b09951ac909ad563ef938a.png

7.我们停掉DB1数据库,看是否会切换到DB2上。

通过实验发现,发现已经切换到DB2上了。

a4a1019b48c82bc04c3b698729f65108.png

8. 我们再次启动DB1上的Mysql服务和keepalived服务(已经通过脚本实现MySQL服务关闭的同时,脚本会杀掉keepalived进程)

通过实验发现,由于我们设置的是不抢占,在DB1启动后,并没有切换回DB2. 达到预期的目的。

4ad6906678fda769eb8a257cf9791f54.png

9.这次我们停掉DB2上的MySQL服务,看是否会切换回DB1.

通过实验发现,在停掉DB2上的MySQL服务后,已经自动切换回DB1上。达到预期目的。

8d931ecbc4780a00db4e3ebc08f0bac8.png

特别提示:当MySQL被关闭时,其所在的主机的keepalived也同时被关闭。但在重新启动MySQL服务时,keepalived不会自动启动,需要手动启动。

10.至此,整个配置过程完毕!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值