0

0

Multi-Master-Rep in MySQL DB_MySQL

php中文网

php中文网

发布时间:2016-06-01 13:14:32

|

1205人浏览过

|

来源于php中文网

原创

multi-master-rep

two masters:-- 192.168.126.128 mysql 5.6.12-- 192.168.126.129 mysql 5.6.12
slave :-- 192.168.126.130 MariaDB 10.0
from one master machine create new db and insert one record:23:44:55 (none)> show master status	-> ;+------------------+----------+--------------+------------------+-------------------+| File			 | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |+------------------+----------+--------------+------------------+-------------------+| mysql-bin.000004 |	544 |			|				|				 |+------------------+----------+--------------+------------------+-------------------+1 row in set (0.07 sec)23:45:51 (none)> create database mariatest1;Query OK, 1 row affected (0.21 sec)23:50:14 (none)> use mariatest1;Database changed23:52:16 mariatest1> create table liuyang (id bigint);Query OK, 0 rows affected (1.42 sec)23:52:30 mariatest1> 23:52:31 mariatest1> insert into liuyang values (1);Query OK, 1 row affected (0.17 sec)23:52:37 mariatest1> commit;Query OK, 0 rows affected (0.01 sec)
from secoend master machinecreate new db and insert one record:23:47:23 (none)> show master status/G*************************** 1. row ***************************	File: mysql-bin.000005 Position: 550 Binlog_Do_DB:Binlog_Ignore_DB: Executed_Gtid_Set: 1 row in set (0.00 sec)23:47:29 (none)> create database mariatest2;Query OK, 1 row affected (0.13 sec)23:50:27 (none)> use mariatest2;Database changed23:52:48 mariatest2> create table liuyang (id int);Query OK, 0 rows affected (0.65 sec)23:53:43 mariatest2> insert into liuyang values (1);Query OK, 1 row affected (0.12 sec)23:53:55 mariatest2> commit;Query OK, 0 rows affected (0.00 sec)
change Mariadb slave connect to these two masters:MariaDB [(none)]> SET @@default_master_connection='t1';Query OK, 0 rows affected (0.00 sec)MariaDB [(none)]> CHANGE MASTER 't1' TO MASTER_HOST = '192.168.126.128', MASTER_USER = 'repluser', MASTER_PASSWORD = 'rep', MASTER_PORT = 3333 ,MASTER_LOG_FILE = 'mysql-bin.000005',MASTER_LOG_POS = 550;Query OK, 0 rows affected (0.01 sec)MariaDB [(none)]> SET @@default_master_connection='t2';Query OK, 0 rows affected (0.00 sec)MariaDB [(none)]> CHANGE MASTER 't2' TO MASTER_HOST = '192.168.126.129', MASTER_USER = 'repluser', MASTER_PASSWORD = 'rep', MASTER_PORT = 3333 ,MASTER_LOG_FILE = 'mysql-bin.000004',MASTER_LOG_POS = 544;Query OK, 0 rows affected (0.01 sec)
[mysql@mariadb ~]$ mysql--socket=/mysql3333/mysql/data/mysql.sockWelcome to the MariaDB monitor.Commands end with ; or /g.Your MariaDB connection id is 13Server version: 10.0.10-MariaDB-log MariaDB ServerCopyright (c) 2000, 2014, Oracle, SkySQL Ab and others.Type 'help;' or '/h' for help. Type '/c' to clear the current input statement.MariaDB [(none)]> START ALL SLAVES;Query OK, 0 rows affected, 1 warning (0.00 sec)MariaDB [(none)]> MariaDB [(none)]> show slave status-> /G;Empty set (0.00 sec)ERROR: No query specifiedMariaDB [(none)]> show slave status /G;Empty set (0.00 sec)ERROR: No query specifiedMariaDB [(none)]> show slave 'T1' status /G;*************************** 1. row ***************************	 Slave_IO_State: Waiting for master to send event		Master_Host: 192.168.126.128		Master_User: repluser		Master_Port: 3333		Connect_Retry: 60	Master_Log_File: mysql-bin.000005	Read_Master_Log_Pos: 550	 Relay_Log_File: GSS-01-relay-bin-t1.000002		Relay_Log_Pos: 407	Relay_Master_Log_File: mysql-bin.000005	 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: 550	Relay_Log_Space: 708	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: 0Master_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: 6	 Master_SSL_Crl: 	 Master_SSL_Crlpath: 		 Using_Gtid: No		Gtid_IO_Pos: 1 row in set (0.00 sec)ERROR: No query specifiedMariaDB [(none)]> show slave 'T2' status /G;*************************** 1. row ***************************	 Slave_IO_State: Waiting for master to send event		Master_Host: 192.168.126.129		Master_User: repluser		Master_Port: 3333		Connect_Retry: 60	Master_Log_File: mysql-bin.000004	Read_Master_Log_Pos: 544	 Relay_Log_File: GSS-01-relay-bin-t2.000002		Relay_Log_Pos: 407	Relay_Master_Log_File: mysql-bin.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: 544	Relay_Log_Space: 708	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: 0Master_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: 5	 Master_SSL_Crl: 	 Master_SSL_Crlpath: 		 Using_Gtid: No		Gtid_IO_Pos: 1 row in set (0.00 sec)ERROR: No query specifiedMariaDB [(none)]> show databases;+--------------------+| Database	 |+--------------------+| information_schema || mariatest1	 || mariatest2	 || mysql	|| performance_schema || test	 |+--------------------+6 rows in set (0.06 sec)MariaDB [(none)]> MariaDB [(none)]> select * from mariatest1.liuyang;+------+| id |+------+|1 |+------+1 row in set (0.00 sec)MariaDB [(none)]> select * from mariatest2.liuyang;+------+| id |+------+|1 |+------+1 row in set (0.00 sec)

REF:https://mariadb.com/kb/en/change-master-to/
https://mariadb.com/kb/en/multi-source-replication/
https://mariadb.com/kb/zh-cn/installing-mariadb-binary-tarballs/

Manus
Manus

全球首款通用型AI Agent,可以将你的想法转化为行动。

下载

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
Golang处理数据库错误教程合集
Golang处理数据库错误教程合集

本专题整合了Golang数据库错误处理方法、技巧、管理策略相关内容,阅读专题下面的文章了解更多详细内容。

61

2026.02.06

java多线程方法汇总
java多线程方法汇总

本专题整合了java多线程面试题、实现函数、执行并发相关内容,阅读专题下面的文章了解更多详细内容。

28

2026.02.06

1688阿里巴巴货源平台入口与批发采购指南
1688阿里巴巴货源平台入口与批发采购指南

本专题整理了1688阿里巴巴批发进货平台的最新入口地址与在线采购指南,帮助用户快速找到官方网站入口,了解如何进行批发采购、货源选择以及厂家直销等功能,提升采购效率与平台使用体验。

446

2026.02.06

快手网页版入口与电脑端使用指南 快手官方短视频观看入口
快手网页版入口与电脑端使用指南 快手官方短视频观看入口

本专题汇总了快手网页版的最新入口地址和电脑版使用方法,详细提供快手官网直接访问链接、网页端操作教程,以及如何无需下载安装直接观看短视频的方式,帮助用户轻松浏览和观看快手短视频内容。

258

2026.02.06

C# 多线程与异步编程
C# 多线程与异步编程

本专题深入讲解 C# 中多线程与异步编程的核心概念与实战技巧,包括线程池管理、Task 类的使用、async/await 异步编程模式、并发控制与线程同步、死锁与竞态条件的解决方案。通过实际项目,帮助开发者掌握 如何在 C# 中构建高并发、低延迟的异步系统,提升应用性能和响应速度。

18

2026.02.06

Python 微服务架构与 FastAPI 框架
Python 微服务架构与 FastAPI 框架

本专题系统讲解 Python 微服务架构设计与 FastAPI 框架应用,涵盖 FastAPI 的快速开发、路由与依赖注入、数据模型验证、API 文档自动生成、OAuth2 与 JWT 身份验证、异步支持、部署与扩展等。通过实际案例,帮助学习者掌握 使用 FastAPI 构建高效、可扩展的微服务应用,提高服务响应速度与系统可维护性。

9

2026.02.06

JavaScript 异步编程与事件驱动架构
JavaScript 异步编程与事件驱动架构

本专题深入讲解 JavaScript 异步编程与事件驱动架构,涵盖 Promise、async/await、事件循环机制、回调函数、任务队列与微任务队列、以及如何设计高效的异步应用架构。通过多个实际示例,帮助开发者掌握 如何处理复杂异步操作,并利用事件驱动设计模式构建高效、响应式应用。

12

2026.02.06

java连接字符串方法汇总
java连接字符串方法汇总

本专题整合了java连接字符串教程合集,阅读专题下面的文章了解更多详细操作。

67

2026.02.05

java中fail含义
java中fail含义

本专题整合了java中fail的含义、作用相关内容,阅读专题下面的文章了解更多详细内容。

30

2026.02.05

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号