0%

Mariadb 读写分离集群搭建

基础环境配置

iptables: disabled
selinux: disabled
|系统 |主机名 |IP地址 |角色 |
|CentOS 7.2 x64 |mysql_a |192.168.6.126 |Atlas代理服务 |
|CentOS 7.2 x64 |mysql_b |192.168.6.127 |Mysql主服务器 |
|CentOS 7.2 x64 |mysql_c |192.168.6.128 |Mysql 从服务器|

在mysql_a上安装ansible

1
2
3
4
5
6
[root@mysql_a ~]# yum -y install epel-release
[root@mysql_a ~]# yum -y install ansible
[root@mysql_a ~]# vim /etc/ansible/hosts
[mysql]
mysql_b
mysql_c

建立无密码通信

1
2
3
[root@mysql_a ~]# ssh-keygen -t rsa
[root@mysql_a ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub mysql_b
[root@mysql_a ~]# ssh-copy-id -i ~/.ssh/id_rsa.pub mysql_c

保持服务器时间同步

1
2
3
[root@mysql_a ~]# ansible mysql -a 'timedatectl set-timezone Asia/Shanghai'
[root@mysql_a ~]# ansible mysql -a 'timedatectl set-ntp true'
[root@mysql_a ~]# ansible mysql -a 'ntpdate cn.ntp.org.cn'

配置三台服务器的hosts

1
2
3
4
5
cat /etc/hosts
192.168.6.126 mysql_a
192.168.6.127 mysql_b
192.168.6.128 mysql_c
[root@mysql_a ~]# ansible mysql -m copy -a 'src=/etc/hosts dest=/etc/hosts'

搭建Mariadb(mysql)主从复制

配置Mariadb yum源

1
2
3
4
5
6
7
8
[root@mysql_a ~]# vim /etc/yum.repos.d/MariaDB.repo
# MariaDB 10.2 CentOS repository list - created 2017-07-27 03:36 UTC
# http://downloads.mariadb.org/mariadb/repositories/
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.2/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

安装Mariadb(mysql)

1
2
3
[root@mysql_a ~]# ansible mysql -m copy -a 'src=/etc/yum.repos.d/MariaDB.repo dest=/etc/yum.repos.d/MariaDB.repo'
[root@mysql_a ~]# ansible mysql -m yum -a 'name=MariaDB-server state=installed'
[root@mysql_a ~]# ansible mysql -m yum -a 'name=MariaDB-client state=installed'

*Ps:也可以下载以下几个rpm包,使用yum localinstall .rpm 进行安装(速度会快一些)

1
2
3
4
5
6
7
[root@mysql_b mariadb]# ll
total 171204
-rw-r--r-- 1 root root 8353220 Aug 1 13:56 galera-25.3.20-1.rhel7.el7.centos.x86_64.rpm
-rw-r--r-- 1 root root 50251656 Aug 1 09:46 MariaDB-10.2.7-centos7-x86_64-client.rpm
-rw-r--r-- 1 root root 158012 Aug 1 09:46 MariaDB-10.2.7-centos7-x86_64-common.rpm
-rw-r--r-- 1 root root 2975776 Aug 1 09:46 MariaDB-10.2.7-centos7-x86_64-compat.rpm
-rw-r--r-- 1 root root 113565340 Aug 1 09:46 MariaDB-10.2.7-centos7-x86_64-server.rpm

拷贝模板配置文件

1
[root@mysql_a ~]# ansible mysql -a 'cp /usr/share/mysql/my-medium.cnf /etc/my.cnf'

各服务器上执行初始化操作

mysql_secure_installation

修改mysql_b配置文件

1
2
3
4
5
6
7
vim /etc/my.cnf
log-bin=/var/lib/mysql/mysql-bin
binlog_format=row
server-id = 127
sync_binlog = 1
innodb_support_xa = 1
innodb-flush-log-at-trx-commit=1

建立授权账号

1
2
3
4
5
6
7
8
9
[root@mysql_b mariadb]# mysql -uroot -pffffff
MariaDB [mysql]> grant replication slave on *.* to 'repl'@'192.168.6.%' identified by '111111';
MariaDB [(none)]> show master status;
+------------------+----------+--------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000002 | 342 | | |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)

修改mysql_c配置文件

1
2
3
4
5
vim /etc/my.cnf
binlog_format=row
server-id = 128
replicate-ignore-db=mysql
relay_log=relay-bin

重启两台Mariadb(mysql)服务

1
[root@mysql_a ~]# ansible mysql -a 'systemctl restart mariadb.service'

开启主从同步

1
2
3
4
5
[root@mysql_c mysql]# mysql -uroot –pffffff
MariaDB [(none)]> stop slave;
MariaDB [(none)]> change master to master_host='mysql_b', master_user='repl', master_password='111111',master_log_file='mysql-bin.000002',master_log_pos=342;
MariaDB [(none)]> start slave;
MariaDB [(none)]> show slave status\G

mariadb

Atlas安装配置

安装Mariadb(Mysql)客户端

1
2
3
[root@mysql_a mariadb]# yum install MariaDB-client
[root@mysql_a mariadb]# systemctl status mariadb.service //确保Atlas本机没有mysql服务被启动
Unit mariadb.service could not be found.

安装atlas

下载的时候有两个软件包带分片功能的Atlas-sharding 和Atlas,我们下后边这个(el6的包centos7可以安装)

1
2
[root@mysql_a src]# axel https://github.com/Qihoo360/Atlas/releases/download/2.2.1/Atlas-2.2.1.el6.x86_64.rpm
[root@mysql_a src]# rpm -ivh Atlas-2.2.1.el6.x86_64.rpm

安装目录为/usr/local/mysql-proxy/,会在此目录下生成bin,conf,lib,log四个目录

生成一个加密字符串,配置文件中会用到

1
2
[root@mysql_a bin]# ./encrypt 111111
kOVJsquUepY=

修改配置文件

360团队很良心,中文注释很详细

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
51
52
53
54
55
56
57
58
[root@mysql_a bin]# vim /usr/local/mysql-proxy/conf/test.cnf
[mysql-proxy]

#带#号的为非必需的配置项目

#管理接口的用户名
admin-username = nsxq

#管理接口的密码
admin-password = ffffff

#Atlas后端连接的MySQL主库的IP和端口,可设置多项,用逗号分隔
proxy-backend-addresses = 192.168.6.127:3306

#Atlas后端连接的MySQL从库的IP和端口,@后面的数字代表权重,用来作负载均衡,若省略则默认为1,可设置多项,用逗号分隔
proxy-read-only-backend-addresses = 192.168.6.128:3306@1

#用户名与其对应的加密过的MySQL密码,密码使用PREFIX/bin目录下的加密程序encrypt加密,下行的user1和user2为示例,将其替换为你的MySQL的用户名和加密密码!
pwds = atlas:kOVJsquUepY=

#设置Atlas的运行方式,设为true时为守护进程方式,设为false时为前台方式,一般开发调试时设为false,线上运行时设为true,true后面不能有空格。
daemon = true

#设置Atlas的运行方式,设为true时Atlas会启动两个进程,一个为monitor,一个为worker,monitor在worker意外退出后会自动将其重启,设为false时只有worker,没有monitor,一般开发调试时设为false,线上>
运行时设为true,true后面不能有空格。
keepalive = true

#工作线程数,对Atlas的性能有很大影响,可根据情况适当设置
event-threads = 8

#日志级别,分为message、warning、critical、error、debug五个级别
log-level = message

#日志存放的路径
log-path = /usr/local/mysql-proxy/log

#SQL日志的开关,可设置为OFF、ON、REALTIME,OFF代表不记录SQL日志,ON代表记录SQL日志,REALTIME代表记录SQL日志且实时写入磁盘,默认为OFF
#sql-log = OFF

#慢日志输出设置。当设置了该参数时,则日志只输出执行时间超过sql-log-slow(单位:ms)的日志记录。不设置该参数则输出全部日志。
#sql-log-slow = 10

#实例名称,用于同一台机器上多个Atlas实例间的区分
#instance = test

#Atlas监听的工作接口IP和端口
proxy-address = 0.0.0.0:1234
#分表设置,此例中person为库名,mt为表名,id为分表字段,3为子表数量,可设置多项,以逗号分隔,若不分表则不需要设置该项
#tables = person.mt.id.3

#默认字符集,设置该项后客户端不再需要执行SET NAMES语句
#charset = utf8

#允许连接Atlas的客户端的IP,可以是精确IP,也可以是IP段,以逗号分隔,若不设置该项则允许所有IP连接,否则只允许列表中的IP连接
#client-ips = 127.0.0.1, 192.168.1

#Atlas前面挂接的LVS的物理网卡的IP(注意不是虚IP),若有LVS且设置了client-ips则此项必须设置,否则可以不设置
#lvs-ips = 192.168.1.1

启动Atlas服务

1
2
3
4
5
[root@mysql_a bin]# ./mysql-proxyd test start
[root@mysql_a mariadb]# ps -ef |grep mysql
root 21456 1 0 15:24 ? 00:00:00 /usr/local/mysql-proxy/bin/mysql-proxy --defaults-file=/usr/local/mysql-proxy/conf/test.cnf
root 21457 21456 0 15:24 ? 00:00:00 /usr/local/mysql-proxy/bin/mysql-proxy --defaults-file=/usr/local/mysql-proxy/conf/test.cnf
root 21607 20025 0 15:35 pts/0 00:00:00 grep --color=auto mysql

通过Atlas访问

通过管理接口访问

1
[root@mysql_a mariadb]# mysql -h127.0.0.1 -P2345 -unsxq –pffffff

通过工作接口访问

1
2
3
要保证这个用户在主从节点上都有权限,在主从节点上都添加一个用户
MariaDB [mysql]> grant all on *.* to atlas@'192.168.6.%' identified by '111111';
[root@mysql_a mariadb]# mysql -h127.0.0.1 -P1234 -uatlas -p111111

参考连接:
https://github.com/Qihoo360/Atlas/wiki
http://www.cnblogs.com/yyhh/p/5084844.html