数据库读写分离

实现 MySQL 的读写分离主要可以通过以下几种方式:

  1. 一主多从架构

    • 设置一个主数据库(Master)来处理写操作(如 INSERT、UPDATE、DELETE)。

    • 设置多个从数据库(Slave)来处理读操作(如 SELECT)。

    • 主数据库通过复制功能(如 MySQL 的主从复制)将数据变更同步到从数据库上。

  2. 使用中间件

    • 中间件如 MyCat、ProxySQL、MaxScale 等,它们位于应用程序和数据库服务器之间,负责处理读写请求的路由。

    • 中间件根据配置的策略(如基于 SQL 语句的类型、用户、时间等)将读请求发送到从数据库,将写请求发送到主数据库。

    • 中间件通常还提供负载均衡、故障转移等功能。

  3. 数据库自带功能

    • 一些数据库管理系统(如 MySQL 的 Group Replication 或 MariaDB 的 Galera Cluster)提供了内置的读写分离和故障转移功能。

    • 这些功能通常更加稳定可靠,但可能受到数据库管理系统版本的限制。

以下是实现读写分离的一般步骤:

  1. 配置主从复制

    • 在主数据库上配置二进制日志(binary logging)和服务器 ID。

    • 在从数据库上配置主数据库的 IP 地址、端口、用户名、密码等信息,并启动复制进程。

    • 验证从数据库是否成功从主数据库复制数据。

  2. 配置中间件(如果使用):

    • 根据所选的中间件进行配置,包括数据库连接信息、读写分离策略、负载均衡策略等。

    • 启动中间件服务,并验证其是否正常工作。

  3. 修改应用程序(如果使用基于应用程序的读写分离):

    • 修改应用程序的代码,使其根据业务需求将读请求发送到从数据库,将写请求发送到主数据库。

    • 这可能需要修改数据库连接字符串、添加路由逻辑等。

  4. 监控和日志

    • 对读写分离架构进行持续的监控,包括主从数据库的同步状态、性能指标等。

    • 记录相关的日志信息,以便在出现问题时能够快速定位和解决问题。

环境

Redhat 9.2

192.168.200.133 mysql-proxy

192.168.200.128 master

192.168.200.129 slave

步骤
1、修改主机名,关闭防火墙
[root@localhost ~]# hostnamectl  hostname  master
[root@localhost ~]# bash
[root@master ~]# systemctl  stop firewalld.service 
[root@master ~]# systemctl  disable firewalld.service 
Removed "/etc/systemd/system/multi-user.target.wants/firewalld.service".
Removed "/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service".
[root@master ~]# setenforce  0
[root@master ~]#[root@localhost ~]# hostnamectl  hostname  slave
[root@localhost ~]# bash
[root@slave ~]# systemctl  stop  firewalld.service 
[root@slave ~]# systemctl  disable  firewalld.service 
Removed "/etc/systemd/system/multi-user.target.wants/firewalld.service".
Removed "/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service".
[root@slave ~]# setenforce 0
[root@slave ~]# [root@admin ~]# hostnamectl  hostname mysql_proxy
[root@admin ~]# bash
[root@mysqlproxy ~]# systemctl  stop firewalld.service 
[root@mysqlproxy ~]# systemctl  disable firewalld.service 
Removed "/etc/systemd/system/multi-user.target.wants/firewalld.service".
Removed "/etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service".
[root@mysqlproxy ~]# setenforce  0
[root@mysqlproxy ~]# 
2、安装数据库软件
[root@master ~]# yum -y install  mariadb*
[root@master ~]# systemctl  restart  mariadb.service 
[root@master ~]# systemctl  enable  mariadb.service 
Created symlink /etc/systemd/system/mysql.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/mysqld.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /usr/lib/systemd/system/mariadb.service.
[root@master ~]# mysql_secure_installation [root@slave ~]# yum -y install  mariadb*
[root@slave ~]# systemctl  restart  mariadb.service 
[root@slave ~]# systemctl  enable  mariadb.service 
Created symlink /etc/systemd/system/mysql.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/mysqld.service → /usr/lib/systemd/system/mariadb.service.
Created symlink /etc/systemd/system/multi-user.target.wants/mariadb.service → /usr/lib/systemd/system/mariadb.service.
[root@slave ~]# 
[root@slave ~]# mysql_secure_installation 
3、对两台机器做主从同步
#master配置
[root@master ~]# vim /etc/my.cnf.d/mariadb-server.cnf 
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
log-error=/var/log/mariadb/mariadb.log
pid-file=/run/mariadb/mariadb.pid
log_bin=mysql_bin     //添加
binlog_ignore_db=mysql    //添加
server_id=200			//添加
[root@master ~]# systemctl  restart  mariadb.service #slave
[root@slave ~]# vim /etc/my.cnf.d/mariadb-server.cnf 
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
log-error=/var/log/mariadb/mariadb.log
pid-file=/run/mariadb/mariadb.pid
log_bin=mysql_bin      //添加如下
binlog_ignore_db=mysql
server_id=201
[root@slave ~]# systemctl  restart  mariadb.service 
 4、创建登录用户并授权
[root@master ~]# mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 4
Server version: 10.5.16-MariaDB-log MariaDB ServerCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MariaDB [(none)]> create user 'slave'@'%' identified by '1';
Query OK, 0 rows affected (0.001 sec)MariaDB [(none)]> grant replication slave on  *.* to 'slave'@'%' identified by '1';
Query OK, 0 rows affected (0.001 sec)
5、在slave上开启同步
MariaDB [(none)]> change master to master_host='192.168.200.128',master_user='slave',master_password='1';
Query OK, 0 rows affected (0.007 sec)MariaDB [(none)]> start slave;
Query OK, 0 rows affected (0.001 sec)MariaDB [(none)]> show slave status \G;
*************************** 1. row ***************************Slave_IO_State: Waiting for master to send eventMaster_Host: 192.168.200.128Master_User: slaveMaster_Port: 3306Connect_Retry: 60Master_Log_File: mysql_bin.000001Read_Master_Log_Pos: 659Relay_Log_File: mariadb-relay-bin.000002Relay_Log_Pos: 958Relay_Master_Log_File: mysql_bin.000001Slave_IO_Running: YesSlave_SQL_Running: Yes
......
6、给mysql-proxy主机安装lua解析器

安装解析器和mariadb

[root@mysqlproxy ~]# yum -y install  mariadb*
[root@mysqlproxy ~]# systemctl  restart  mariadb.service 
[root@mysqlproxy ~]# mysql_secure_installation 
[root@mysqlproxy ~]# yum -y install lua*
#下载Mysql-proxy软件⼯具
[root@mysqlproxy ~]#  wget https://cdn.mysql.com/archives/mysql-proxy/mysql-proxy-0.8.5-linux-el6-x86-64bit.tar.gz
[root@mysqlproxy ~]# ls
公共  模板  视频  图片  文档  下载  音乐  桌面  anaconda-ks.cfg  mysql-proxy-0.8.5-linux-el6-x86-64bit.tar.gz
[root@mysqlproxy ~]# 
#解压
[root@mysqlproxy ~]# tar -xvf mysql-proxy-0.8.5-linux-el6-x86-64bit.tar.gz -C /usr/local/
[root@mysqlproxy ~]# cd /usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit/
[root@mysqlproxy mysql-proxy-0.8.5-linux-el6-x86-64bit]# ls
bin  include  lib  libexec  licenses  share
[root@mysqlproxy mysql-proxy-0.8.5-linux-el6-x86-64bit]# 
#配置环境变量
[root@mysqlproxy ~]# export PATH=$PATH:$HOME/bin:/usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit/bin
7、增加配置文件
[root@mysqlproxy ~]# vim /usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit/mysql_proxy.conf 
[mysql-proxy]plugins=proxy   //代理插件proxy-address=192.168.200.133:4040   // 定义 MySQL Proxy 监听的地址和端口,客户端应该连接到这个地址和端口来访问 MySQL 服务proxy-backend-addresses=192.168.200.129:3306 // 主服务器地址进行写操作proxy-read-only-backend-addresses=192.168.200.128:3306  //从服务器地址进行读操作proxy-lua-script=/usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit//share/doc/mysql- proxy/rw-splitting.lualog-file=/usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit/mysql-proxy.loglog-level=debugkeepalive=true   //保持连接daemon=true#修改权限[root@mysqlproxy ~]# chmod 660 /usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit/mysql_proxy.conf 
[root@mysqlproxy ~]# 
8、启动mysql_proxy服务

启动后修改读写分离配置文件

[root@mysqlproxy ~]# mysql-proxy --defaults-file=/usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit/mysql_proxy.conf 
[root@mysqlproxy ~]# ss -anltp | grep mysql-proxy
LISTEN 0      128    192.168.200.133:4040      0.0.0.0:*    users:(("mysql-proxy",pid=84175,fd=10))
[root@mysqlproxy ~]# 
[root@mysqlproxy ~]# vim /usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit/share/doc/mysql-proxy/rw-splitting.lua 38 if not proxy.global.config.rwsplit then39         proxy.global.config.rwsplit = {40                 min_idle_connections = 1,   //1,只要有⼀个连接,就进⾏读写分离。41                 max_idle_connections = 8,42 43                 is_debug = false44         }45 end
[root@mysqlproxy ~]# pkill mysql-proxy   //终止进程
[root@mysqlproxy ~]# mysql-proxy --defaults-file=/usr/local/mysql-proxy-0.8.5-linux-el6-x86-64bit/mysql_proxy.conf 
[root@mysqlproxy ~]# 
9、主从服务器为mysqlproxy数据库账户授权
[root@master ~]# mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 6
Server version: 10.5.16-MariaDB-log MariaDB ServerCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MariaDB [(none)]> GRANT ALL ON *.* TO 'mysqlproxy'@'%' IDENTIFIED BY '1';
Query OK, 0 rows affected (0.001 sec)MariaDB [(none)]> [root@slave ~]# mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 7
Server version: 10.5.16-MariaDB-log MariaDB ServerCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MariaDB [(none)]> GRANT ALL ON *.* TO 'mysqlproxy'@'%' IDENTIFIED BY '1';
Query OK, 0 rows affected (0.001 sec)MariaDB [(none)]> 
10、测试
[root@mysqlproxy ~]# mysql -umysqlproxy -p -P 4040 -h 192.168.200.133
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 13
Server version: 10.5.16-MariaDB-log MariaDB ServerCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MariaDB [(none)]> 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/14536.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

USB数据恢复软件:轻松找回U盘重要数据!

USB数据丢失的原因 USB数据丢失有一些常见原因,了解这些原因有利于恢复数据。 文件意外删除病毒攻击软件错误未安全弹出USB设备格式化USB设备 顺便一提,如果你通过快捷键“Ctrl D”删除了数据,那你可以从回收站中还原它们。如果你永久删除…

Isaac Sim仿真平台学习(1)认识Isaac Sim

0.前言 上一个教程中我们下载好了Isaac Sim,这一章我们将来简单了解一下Isaac Sim平台。 isaac Sim仿真平台安装-CSDN博客 1.Isaac Sim是啥? What Is Isaac Sim? — Omniverse IsaacSim latest documentation Isaac Sim是NVDIA Omniverse平台的机器…

【编译原理复习笔记】属性文法

属性文法 也称为属性翻译文法,由 Knuth 提出,以上下文无关文法为基础 (1)为每个文法符号(终结符与非终结符)配备相关的属性,代表与该文法符号相关的信息 (2)属性文法对于…

【LSTM】基于Matlab的LSTM模型建模(代码)

训练目标:用LSTM训练数据 数据:随时间递增,患者患病的概率(横坐标1个单位代表1个时间单位) 以下代码可直接运行 clc clear close all warning off % 关闭报警信息 %% 1.数据操作 % 1.1.导入数据&#x…

数据链路层协议——以太网协议

1. 数据链路层 网络层用于将数据从一台主机发送到另一台主机。传输层用于将数据可靠的从一台主机发送到另一台主机。(网络层没有保证可靠性的策略,传输过程中可能会出现各种意外,例如:丢包,网络拥塞等。通过传输层可以…

跨域问题的4种解决方案

文章导读 前言 跨域问题指的是在Web开发中,由于浏览器的同源策略限制,当一个网页尝试访问与它不同源(协议、域名或端口不同)的资源时,可能会遇到安全限制导致无法正常访问的问题。这种策略旨在防止恶意网站读取或修改其…

yarn的基本命令和用法

Yarn通过并行安装、离线模式、确定性安装以及更好的依赖解析算法,为开发者提供了更快、更稳定、更安全的包管理体验。它保留了npm的大部分功能,并在此基础上做了大量优化,下面我们就来详述Yarn的核心命令和实用技巧。📚 安装Yarn…

【MySQL精通之路】InnoDB(7)-锁和事务模型(2)-事务模型

主博客: 【MySQL精通之路】InnoDB(7)-锁和事务模型-CSDN博客 上一篇: 【MySQL精通之路】InnoDB(7)-锁和事务模型(1)-锁-CSDN博客 下一篇: 目录 1.事务隔离级别 2.1 可重复读 2.2 读已提交 2.3 读取未提交 2.4 序列化读 2.自动提交、…

订餐系统总结、

应用层: SpringBoot:快速构建Spring项目,采用“约定大于配置”的思想,简化Spring项目的配置开发。 SpringMvc:Spring框架的一个模块,springmvc和spring无需通过中间整合层进行整合,可以无缝集成。 Sprin…

完整的数据可视化方法集

在当前的大数据时代,了解如何可视化数据是UI/UX设计师技能的重要组成部分。如今,几乎所有的公司都需要良好的数据可视化作为确定业务方向和决策的参考。数据的可视化结果越好,用户的决策就越科学。 1、什么是数据可视化 数据可视化是将信息…

张量 t-product 积(matlab代码)

参考文献:Tensor Robust Principal Component Analysis with a New Tensor Nuclear Norm 首先是文章2.3节中 t-product 的定义: 块循环矩阵: 参考知乎博主的例子及代码:(t-product与t-QR分解,另一篇傅里叶对…

HTML5 设备访问及输入输出设备交互

目录 设备访问输入设备交互输出设备交互设备访问 设备信息访问 navigator.userAgent:获取浏览器的用户代理字符串,从中可以解析出设备类型、操作系统、浏览器版本等信息。 const userAgent = navigator.userAgent; console.log(userAgent); // 输出类似 "Mozilla/5.0…

算法(Algorithm)

算法(Algorithm)是指解题方案的准确而完整的描述,是一系列解决问题的清晰指令,代表着用系统的方法描述解决问题的策略机制。也就是说,算法能够对一定规范的输入,在有限时间内获得所要求的输出。算法应该具有…

【python004】miniforge可行替代方案实战总结(最近更新中)

1.熟悉、梳理、总结项目研发实战中的miniforge日常使用中的问题。随着版本更新,做了一些变动,如商业化限制,取消一些语法等。 2.欢迎点赞、关注、批评、指正,互三走起来,小手动起来!

vue通过for循环生成input框后双向绑定失效问题

有些时候页面上有太多的表单元素&#xff0c;一个个的写太过繁琐&#xff0c;拿 input 框举例&#xff0c;众多的 input 框&#xff0c;无非就是输入框前的说明和 input 框的 name 属性不一样 <el-form :inline"true" :model"formInline" size"mi…

01-05.Vue自定义过滤器

目录 前言过滤器的概念过滤器的基本使用给过滤器添加多个参数 前言 我们接着上一篇文章01-04.Vue的使用示例&#xff1a;列表功能 来讲。 下一篇文章 02-Vue实例的生命周期函数 过滤器的概念 概念&#xff1a;Vue.js 允许我们自定义过滤器&#xff0c;可被用作一些常见的文本…

软件模块的耦合

软件模块的耦合 耦合是指软件模块之间的依赖程度&#xff0c;耦合越低&#xff0c;模块之间的独立性越高&#xff0c;软件的可维护性、可重用性也越高。下面是几种常见的耦合类型的概念&#xff1a; 数据耦合&#xff08;Data Coupling&#xff09;&#xff1a; 当一个模块通…

Python ❀ 使用代码解决今天中午吃什么的重大生存问题

1. 环境安装 安装Python代码环境参考文档 2. 代码块 import random# 准备一下你想吃的东西 hot ["兰州拉面", "爆肚面", "黄焖鸡", "麻辣香锅", "米线", "麻食", "羊肉泡馍", "肚丝/羊血汤&qu…

doxygen 1.11.0 使用详解(九)——包含公式

目录 Doxygen allows you to put LATEX formulas in the output (this works only for the HTML, LATEX and RTF output. To be able to include formulas (as images) in the HTML and RTF documentation, you will also need to have the following tools installed latex: …

定时监测服务器磁盘是否超过阈值,超过就删除docker 镜像

达到指定百分比 删除镜像脚本 df -h 查找到 内存占用信息 &#xff0c;得到的 文件系统名称是 overlay的&#xff0c;Use% 达到70就进行删除docker 镜像 #!/bin/bash# 设置磁盘使用阈值 THRESHOLD70# 获取 overlay 文件系统的磁盘使用百分比 DISK_USAGES$(df -h | grep overl…