当前位置:网站首页>MariaDB的Galera集群应用场景--数据库多主多活
MariaDB的Galera集群应用场景--数据库多主多活
2022-07-04 22:45:00 【左明水】
实施环境
Centos 7.2V 1511
MySQL 5.5.52V
应用场景描述
先前未做双主双活集群;
一台数据库节点有历史数据;
现在要做双主双活Galera集群.
场景模拟演练
- 创建一台有历史数据的数据库节点
从另一个MySQL数据库中,备份所有数据,然后将数据导入到本地数据库节点.
安装同版本yum -y install mariadb-server.x86_64
开启数据库服务 : systemctl start mysql
初始化数据库
mysql_secure_installation
将备份数据导入新安装的数据库中:
数据库中也已经存入数据:
这将作为一个没有做数据库集群且已经运行了一段时间的具有历史数据的数据库节点.
- 在运行了一段时间的具有历史数据的数据库节点上安装Galera集群软件
yum --enablerepo=mariadb -y install MariaDB-Galera-server
同样是5.5.52的MariaDB-Galera-server软件会与5.5.52的MariaDB-server造成冲突!!
不能进行同版本的平滑过渡!!!
采用方法:
将原来安装的数据库软件卸载掉,然后安装这个集群软件
yum –y remove mariadb-server (数据库服务器端)
yum –y remove mariadb (数据库客户端)
直接卸载数据库对数据库中的数据不会产生丢失.数据在/var/lib/mysql 目录下存放着.
yum --enablerepo=mariadb -y install MariaDB-Galera-server
进入数据库后,查询数据仍然存在
此时,该数据库节点只是安装了集群软件,尚未进行集群的相关配置.
- 在第二个数据库节点上,安装集群软件
yum --enablerepo=mariadb -y install MariaDB-Galera-server
此时,该节点数据库中并没有相关的同步数据:
- 开始配置Galera集群的配置文件
vim /etc/my.cnf.d/server.cnf
初始化新增加的数据库节点
mysql_secure_installation
- 启动集群
防火墙和SLinux要求都要关闭
查看集群状态:
- 查看新增的数据库节点的数据同步
- 风险评估
若是数据库集群软件如上操作不能平滑过渡,需要卸载冲突的数据库软件,在此期间需要停业务.
2.风险规避
在进行集群搭建时一定要做好数据库的全量备份!
3. 部署优化方案
建议集群中至少用3个数据库节点.原因,在一般情况下,3台数据库进行主主互备,当一台数据库宕机后,集群中至少还有两台数据库在进行主主互备.
- 规避了2台机器数据库主主互备过程中,连续2台数据库宕机的风险
- 规避了2台机器数据库主主互备过程中,1台机器宕机由于不可抗拒因素无法及时恢复的风险.
- 为数据库集群中部分节点出现宕机,进行恢复工作,赢得宝贵的时间.
- 将数据库主主互备的故障风险率,从原来2台机器双机互备的50%以上, 降低到3台主主互备的30%以下.
边栏推荐
- Create Ca and issue certificate through go language
- debug和release的区别
- Photoshop批量给不同的图片添加不同的编号
- 【室友用一局王者荣耀的时间学会了用BI报表数据处理】
- Advanced area of attack and defense world misc 3-11
- Complete tutorial for getting started with redis: bitmaps
- Redis入门完整教程:Redis Shell
- Redis getting started complete tutorial: hash description
- 时间 (计算)总工具类 例子: 今年开始时间和今年结束时间等
- Attack and defense world misc advanced grace-50
猜你喜欢
Unity vscode emmylua configuration error resolution
Redis入门完整教程:哈希说明
Redis入门完整教程:列表讲解
Redis:Redis的事务
Complete tutorial for getting started with redis: bitmaps
D3.js+Three. JS data visualization 3D Earth JS special effect
Redis introduction complete tutorial: detailed explanation of ordered collection
位运算符讲解
A complete tutorial for getting started with redis: transactions and Lua
One of the commonly used technical indicators, reading boll Bollinger line indicators
随机推荐
MySQL Architecture - user rights and management
头文件重复定义问题解决“C1014错误“
Attack and defense world misc master advanced zone 001 normal_ png
Complete tutorial for getting started with redis: bitmaps
【taichi】用最少的修改将太极的pbf2d(基于位置的流体模拟)改为pbf3d
Erik baleog and Olaf, advanced area of misc in the attack and defense world
Insert sort, select sort, bubble sort
Sword finger offer 68 - ii The nearest common ancestor of binary tree
Sword finger offer 68 - I. nearest common ancestor of binary search tree
heatmap. JS picture hotspot heat map plug-in
LIst 相关待整理的知识点
How to send a reliable request before closing the page
A complete tutorial for getting started with redis: Pipeline
How can enterprises cross the digital divide? In cloud native 2.0
Create Ca and issue certificate through go language
Duplicate ADMAS part name
ETCD数据库源码分析——处理Entry记录简要流程
浅聊一下中间件
Common methods in string class
Redis入门完整教程:键管理