当前位置:网站首页>MySQL: MySQL Cluster - Principle and Configuration of Master-Slave Replication
MySQL: MySQL Cluster - Principle and Configuration of Master-Slave Replication
2022-08-10 22:41:00 【_Sauron】
Foreword
In the actual production environment, if the reading and writing of the mysql database are operated in one database server, it cannot meet the actual needs in terms of security, high availability, or high concurrency.
strong>Generally, data should be synchronized through master-slave replication, and then the concurrent load capacity of the database should be improved through read-write separation.
1. Data Backup - Hot Backup & Disaster Recovery & High Availability
2. Separation of Read and Write to Support Greater Concurrency
Article table of contents
Introduction to Principles
The process of master-slave replication: two logs (binlog binary log & relay log log) and three threads (one thread of master and two threads of
slave)
1. The update operation of the main library is written into the binlog binary log.
2. The master server creates a binlog dump thread to send the binary log content to the slave server.
3. When the slave machine executes the START SLAVE command, an IO thread will be created on the slave server, and the binary log of the master will be copied to its relay log.
First the slave starts a worker thread (I/O thread), the I/O thread opens a normal connection on the master, and then starts the
binlog dump process, which reads events from the master's binary log, if it has caught up with the
master, it sleeps and waits for the master to generate new events, which the I/O thread writes to the relay log.
4. The sql slave thread (sql slave thread) processes the last step of the process, the sql thread reads events from the relay log, and replays the events in
to update the data of the slave machine so that it matches the masterdata are consistent.As long as the thread is consistent with the I/O thread, the relay log will usually be in the OS cache, so the overhead of the relay log is small.
Question
Why not use the I/O thread to directly read data from the bin-log of the main library and write it to the slave library, but write to the relay log?
Because there may be a lot of bin-log content in the main library, and an I/O thread reads slowly, the data updated from the slave library may be more and more different from the content of the main library, and the data lags behind.
Configuration
Master (centos7): 192.168.131.129
Slave (win10): 192.168.0.6
Ensure network connectivity between master and slave, and ensure that port 3306 is open.
Master configuration:
1. Open binary log, directory: /etc/my.cnf
Configure log_bin and globally unique server-id.
2. Create an account for master-slave library communication
mysql> CREATE USER 'mslave'@'192.168.131.1' IDENTIFIED BY '[email protected]';
mysql> GRANT REPLICATION SLAVE ON . to 'mslave'@'192.168.131.1' IDENTIFIED BY '[email protected]';
mysql> FLUSH PRIVILEGES;
3. Get the log file name and position of binlog
mysql> show master status;
slave configuration:
1. Configure a globally unique server-id (involving modifying the configuration file, you need to restart the mysql57 service)
2. Use the account created by the master to read the binlog synchronization data (stop slave; start slave)
Adjust the parameters according to your own situation
Example, configure the personal main library bin-log wherever it is located
3. START SLAVE
View the master-slave replication status through the show slave status command.show processlist to view the running status of master and slave related threads
.
Common mistakes
- IO_ERROR
Solution:
- Use the ping command to check whether the network is connected?
- Is the port 3306 of the machine where the main library is located normal?telnet xxx.xxx.xxx.xxx 3306
- Does the firewall restrict ports?
- View the error log of the main library /var/log/mysql/mysqld.log
2.Last_Error
Solution: Check if the configuration information is wrong, then restart the slave thread
3.SQL_Error
Error reason:
The slave library has not synchronized the mytest library, but the master library uses the SQL of drop database mytest, then this SQL will be written to the bin-log log, and then the I/O thread will read this SQL and write it to the relay log, the slave library reads this SQL from the relay log, and the error is generated after execution.
Solution:
You can stop the slave thread, skip an error, and restart the slave
stop slave;
set global sql_slave_skip_counter = 1;
start slave;
边栏推荐
- 黑猫带你学Makefile第12篇:常见Makefile问题汇总
- August 10, 2022: Building Web Applications for Beginners with ASP.NET Core -- Creating Web UIs with ASP.NET Core
- ThreadLocal comprehensive analysis (1)
- Detailed installation steps and environment configuration of geemap
- 爬虫request.get()出现错误
- Translating scientific and technological papers, how to translate from Russian to Chinese
- 《DevOps围炉夜话》- Pilot - CNCF开源DevOps项目DevStream简介 - feat. PMC成员胡涛
- The Thread State,
- c语言之 练习题1 大贤者福尔:魔法数,神奇的等式
- What are the concepts, purposes, processes, and testing methods of interface testing?
猜你喜欢
随机推荐
Power system power flow calculation (Newton-Raphson method, Gauss-Seidel method, fast decoupling method) (Matlab code implementation)
shell编程之正则表达式与文本处理器
MySQL:MySQL的集群——主从复制的原理和配置
2022年8月的10篇论文推荐
美味的佳肴
【Maui正式版】创建可跨平台的Maui程序,以及有关依赖注入、MVVM双向绑定的实现和演示
These must-know JVM knowledge, I have sorted it out with a mind map
阿里云架构师金云龙:基于云XR平台的视觉计算应用部署
STL-deque
Using SylixOS virtual serial port, serial port free implementation system
STL-stack
电力系统潮流计算(牛顿-拉夫逊法、高斯-赛德尔法、快速解耦法)(Matlab代码实现)
【640. 求解方程】
接口测试的概念、目的、流程、测试方法有哪些?
c语言之 练习题1 大贤者福尔:魔法数,神奇的等式
文件IO-缓冲区
APP UI自动化测试常见面试题,或许有用呢~
ASCII, Unicode and UTF-8
BM13判断一个链表是否为回文结构
财务年报怎样翻译,为什么要选择专业翻译公司?