author:JevonWei

版权声明:原创作品


ProxySQL构建主从复制的读写分离

ProxySQL官网及下载地址 http://www.proxysql.com/

架构角色

mysql-slave2	172.16.252.92
mysql-slave1 172.16.252.82
ProxySQL 172.16.253.105
mysql-master 172.16.252.30

准备阶段:

各节点服务端都需提前同步时间及安装mariadb数据库
[root@mysql-master ~]# ntpdate 172.16.0.1
[root@mysql-slave1 ~]# yum -y install mariadb-server
关闭防火墙
[root@mysql-master ~]# iptables -F
下载ProxySQL程序包
http://www.proxysql.com/

mysql-master

[root@mysql-master ~]# vim /etc/my.cnf.d/server.cnf
[mysqld]
server_id=1
log_bin = master-log
skip_name_resolve = ON
innodb_file_per_table = ON \\每表使用单独的表文件存储
[root@mysql-master ~]# systemctl start mariadb [root@mysql-master ~]# mysql 创建用户并授权连接主节点复制数据的权限
MariaDB [(none)]> GRANT REPLICATION SLAVE,REPLICATION CLIENT ON *.* TO 'repluser'@'172.16.252.%' IDENTIFIED BY 'replpass';
MariaDB [(none)]> FLUSH PRIVILEGES;
显示master节点的状态,记录当前节点的位置
MariaDB [(none)]> SHOW MASTER STATUS;
+-------------------+----------+--------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+-------------------+----------+--------------+------------------+
| master-log.000004 | 498 | | |
+-------------------+----------+--------------+------------------+ 创建连接ProxySQL代理的用户和密码,并同步到各节点主机
MariaDB [(none)]> GRANT ALL ON *.* TO 'proxysql'@'172.16.%.%' IDENTIFIED BY 'proxypass';

mysql-slave1

[root@mysql-slave1 ~]# vim /etc/my.cnf.d/server.cnf
[mysqld]
server_id = 2
relay-log = relay-log
skip_name_resolve = ON
innodb_file_per_table = ON
read_only = ON \\普通用户在slave节点上只有只读权限
[root@mysql-slave1 ~]# systemctl start mariadb [root@mysql-slave1 ~]# mysql
从master的当前节点开始同步复制数据
MariaDB [(none)]> CHANGE MASTER TO MASTER_HOST='172.16.252.30',MASTER_USER='repluser',MASTER_PASSWORD='replpass',MASTER_LOG_FILE='master-log.000004',MASTER_LOG_POS=498;
开启复制进程
MariaDB [(none)]> START SLAVE;
显示slave节点的状态信息
MariaDB [(none)]> SHOW SLAVE STATUS\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.16.252.30
Master_User: repluser
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: master-log.000004
Read_Master_Log_Pos: 498
Relay_Log_File: relay-log.000002
Relay_Log_Pos: 530
Relay_Master_Log_File: master-log.000004
Slave_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:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 498
Relay_Log_Space: 818
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 1

mysql-slave2

[root@mysql-slave1 ~]# vim /etc/my.cnf.d/server.cnf
[mysqld]
server_id = 3
relay-log = relay-log
skip_name_resolve = ON
innodb_file_per_table = ON
read_only = ON
[root@mysql-slave2 ~]# systemctl start mariadb [root@mysql-slave2 ~]# mysql
从master的当前节点开始同步复制数据
MariaDB [(none)]> CHANGE MASTER TO MASTER_HOST='172.16.252.30',MASTER_USER='repluser',MASTER_PASSWORD='replpass',MASTER_LOG_FILE='master-log.000004',MASTER_LOG_POS=498;
开启复制进程
MariaDB [(none)]> START SLAVE;
显示slave节点的状态信息
MariaDB [(none)]> SHOW SLAVE STATUS\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 172.16.252.30
Master_User: repluser
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: master-log.000004
Read_Master_Log_Pos: 498
Relay_Log_File: relay-log.000002
Relay_Log_Pos: 530
Relay_Master_Log_File: master-log.000004
Slave_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:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 498
Relay_Log_Space: 818
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 1

mysql-master

创建连接ProxySQL代理的用户和密码,并同步到各节点主机
MariaDB [(none)]> GRANT ALL ON *.* TO 'proxysql'@'172.16.%.%' IDENTIFIED BY 'proxypass';

ProxySQL

下载ProxySQL程序包到本地并安装
[root@ProxySQL ~]# ls proxysql-1.4.2-1-centos7.x86_64.rpm
proxysql-1.4.2-1-centos7.x86_64.rpm
[root@ProxySQL ~]# yum -y install ./proxysql-1.4.2-1-centos7.x86_64.rpm
[root@ProxySQL ~]# rpm -ql proxysql
/etc/init.d/proxysql \\启动脚本文件
/etc/proxysql.cnf \\配置文件
/usr/bin/proxysql
/usr/share/proxysql/tools/proxysql_galera_checker.sh
/usr/share/proxysql/tools/proxysql_galera_writer.pl 配置Proxy
[root@ProxySQL ~]# vim /etc/proxysql.cnf
datadir="/var/lib/proxysql" admin_variables=
{
admin_credentials="admin:admin"
mysql_ifaces="127.0.0.1:6032;/tmp/proxysql_admin.sock" \\若本机mysql服务没有启用,则使用/tmp/proxysql_admin.sock套接字文件连接管理通信
} mysql_variables=
{
threads=4 \\开启的线程数
max_connections=2048
default_query_delay=0
default_query_timeout=36000000
have_compress=true
poll_timeout=2000
interfaces="0.0.0.0:3306;/tmp/proxysql.sock" \\若本机mysql服务没有启用,则使用/tmp/proxysql.sock套接字文件连接通信
default_schema="hidb"
stacksize=1048576
server_version="5.5.30"
connect_timeout_server=3000
} mysql_servers =
(
{
address = "172.16.253.105"
port = 3306
hostgroup = 0
status = "ONLINE"
weight = 1
compression = 0
},
{
address = "172.16.252.82"
port = 3306
hostgroup = 1
status = "ONLINE"
weight = 1
compression = 0
},
{
address = "172.16.252.92"
port = 3306
hostgroup = 1
status = "ONLINE"
weight = 1
compression = 0
}
) mysql_users:
(
{
username = "proxysql" # no default , required
password = "proxypass" # default: ''
default_hostgroup = 0 # default: 0
default_schema=“hidb”
active = 1 # default: 1
}
) mysql_replication_hostgroups=
(
{
writer_hostgroup=0
reader_hostgroup=1
comment="repl cluster 1"
}
) [root@ProxySQL ~]# service proxysql start
[root@ProxySQL ~]# ss -ntl
State Recv-Q Send-Q Local Address:Port Peer Address:Port
LISTEN 0 128 *:3306 *:*
LISTEN 0 128 *:3306 *:*
LISTEN 0 128 *:3306 *:*
LISTEN 0 128 *:3306 *:*

测试

登录本机数据库,因为本机并没有安装mysql,故使用-S参数指定配置文件中指定的/tmp/proxysql.sock套接字文件通信,使用定义连接ProxySQL代理的账号密码登录
[root@ProxySQL ~]# mysql -S /tmp/proxysql.sock -uproxysql -pproxypass
Your MySQL connection id is 212
Server version: 5.5.30 (ProxySQL) \\显示mysql服务器的版本号 MariaDB [(none)]> CREATE DATABASE hidb;
MariaDB [(none)]> USE hidb;
MariaDB [hidb]> CREATE TABLE mytb(id INT,name CHAR(50));
MariaDB [hidb]> INSERT INTO mytb VALUES (1,'tom');
MariaDB [hidb]> SELECT * FROM mytb;
+------+------+
| id | name |
+------+------+
| 1 | tom |
+------+------+ CLAVE服务端数据实现了同步,即ProxySQL实现了代理数据库的效果,并达到了数据分离的效果
mysql-slave1
MariaDB [(none)]> SELECT * FROM hidb.mytb;
+------+------+
| id | name |
+------+------+
| 1 | tom |
+------+------+

Mysql实战之主从复制的读写分离的更多相关文章

  1. 基于Mysql-Proxy实现Mysql的主从复制以及读写分离(上)

    基于Mysql-Proxy实现Mysql的主从复制以及读写分离(上) 上周BOSS给分配任务让实现一下Mysql数据库的主从复制以及读写分离,然后花了一盏茶的功夫进行了调研,发现主从复制数据库进行一番 ...

  2. 重新学习Mysql数据13:Mysql主从复制,读写分离,分表分库策略与实践

    一.MySQL扩展具体的实现方式 随着业务规模的不断扩大,需要选择合适的方案去应对数据规模的增长,以应对逐渐增长的访问压力和数据量. 关于数据库的扩展主要包括:业务拆分.主从复制.读写分离.数据库分库 ...

  3. Mysql主从复制,读写分离(mysql-proxy),双主结构完整构建过程

    下面介绍MySQL主从复制,读写分离,双主结构完整构建过程,不涉及过多理论,只有实验和配置的过程. Mysql主从复制(转载请注明出处,博文地址:) 原理是master将改变记录到二进制日志(bina ...

  4. linux上使用amoeba实现MySql集群,以及读写分离,主从复制

    一.由于是MySql集群,所以就不可能只有一个MySql,需要多个MySql,具体安装步骤,可以参考http://www.cnblogs.com/ywzq/p/4882140.html这个地址进行安装 ...

  5. Mysql主从复制,读写分离

    一个简单完整的 Mysql 主从复制,读写分离的示意图. 1. 首先搭建 Mysql 主从架构,实现 将 mater 数据自动复制到 slave MySQL 复制的工作方式很简单,一台服务器作为主机, ...

  6. Mysql 主从复制,读写分离设置

    一个简单完整的 Mysql 主从复制,读写分离的示意图. 1. 首先搭建 Mysql 主从架构,实现 将 mater 数据自动复制到 slave MySQL 复制的工作方式很简单,一台服务器作为主机, ...

  7. mysql主从复制以及读写分离

    之前我们已经对LNMP平台的Nginx做过了负载均衡以及高可用的部署,今天我们就通过一些技术来提升数据的高可用以及数据库性能的提升. 一.mysql主从复制 首先我们先来看一下主从复制能够解决什么问题 ...

  8. JAVAEE——宜立方商城13:Mycat数据库分片、主从复制、读写分离、100%Linux中成功安装Mysql的方法

    1 海量数据的存储问题 如今随着互联网的发展,数据的量级也是撑指数的增长,从GB到TB到PB.对数据的各种操作也是愈加的困难,传统的关系性数据库已经无法满足快速查询与插入数据的需求.这个时候NoSQL ...

  9. 基于Mysql-Proxy实现Mysql的主从复制以及读写分离(下)

    基于Mysql-Proxy实现Mysql的主从复制以及读写分离(下) 昨天谈到了Mysql实现主从复制,但由于时间原因并未讲有关读写分离的实现,之所以有读写分离,是为了使数据库拥有双机热备功能,至于双 ...

随机推荐

  1. autoreleasing on a thread

    So basically, if you are running on OS X 10.9+ or iOS 7+, autoreleasing on a thread without a pool s ...

  2. 浅谈 import / export

    import { ngModule } from '@angular/core'; import { AppComponent } from './app.component'; export cla ...

  3. 用ComboBox控件制作浏览器网址输入框

    实现效果: 知识运用: ComboBox控件的FindString public int FindString(string s) //查找数据项集合中指定数据项的索引 和Select方法 publi ...

  4. 3219: 求最高同学位置—C语言版

    3219: 求最高同学位置—C语言版 时间限制: 1 Sec  内存限制: 128 MB提交: 207  解决: 115[提交][状态][讨论版][命题人:smallgyy] 题目描述 设一维数组存放 ...

  5. bazel安装

    https://blog.csdn.net/cxq234843654/article/details/70861155 sudo apt-get install openjdk-8-jdk echo ...

  6. 为什么L1稀疏,L2平滑?

    使用机器学习方法解决实际问题时,我们通常要用L1或L2范数做正则化(regularization),从而限制权值大小,减少过拟合风险.特别是在使用梯度下降来做目标函数优化时,很常见的说法是,  L1正 ...

  7. Flutter 入坑(1):flutter 环境搭建,window版本

    下载安装JAVA环境 1. 既然要做原生应用了,而且是基于Android的,那还是需要我们安装一下JAVA的环境的,我比一般得到一个新系统后首先做的就是这一步.    https://www.orac ...

  8. JavaScript 常用的排序算法

    冒泡排序 function bubbleSort(array) { for (let i = 0; i < array.length; i++) for (let j = 0; j < a ...

  9. 微信小程序的开发——01小程序的执行流程是怎样的?

    作者:叶小钗 转载至:https://www.cnblogs.com/yexiaochai/p/9346043.html 我们这边最近一直在做基础服务,这一切都是为了完善技术体系,这里对于前端来说便是 ...

  10. 3170: [Tjoi2013]松鼠聚会

    Time Limit: 10 Sec  Memory Limit: 128 MB Submit: 1804  Solved: 968[Submit][Status][Discuss] Descript ...