深入浅出MySQL双向复制技能
配置MySQL数据同步(单向双向)由于公司的业务需求,须要网通和电信的数据同步,就做了个MySQL的双向同步,记下流程,以后用得到再翻出来,也贴出来供大家参考。 一、准备服务器 由于MySQL不同版本之间的(二进制日志)binlog格式可能会不一样,因此最好的搭配
配置 MySQL数据同步(单向&双向)由于公司的业务需求,须要 网通和电信的数据同步,就做了个MySQL的双向同步,记下流程 ,以后用得到再翻出来,也贴出来供大家参考。
一、准备服务器
由于MySQL不同版本之间的(二进制日志)binlog格式可能会不一样,因此最好的搭配组合是Master的MySQL版本和Slave的版本相同或者更低,Master的版本肯定不能高于Slave版本。
more.. less.. 本文中,我们假设主服务器(以下简称Master)和从服务器(以下简称Slave)的版本都是5.0.27,操作系统是RedHat Linux 9。
假设同步Master的主机名为:A(IP:192.168.0.1),Slave主机名为:B(IP:192.168.0.2),2个MySQL的basedir目录都是/usr/local/mysql,datadir都是:/var/lib/mysql。
二、配置 同步服务器
1、配置 同步Master
修改 f 文件,在
# Replication Master Server (default)<br><br># binary logging is required for replication
添加如下内容:
log-bin=/var/log/mysql/updatelog<br><br>server-id = 1<br><br>binlog-do-db=test<br><br>binlog-ignore-db=mysql<br><br>
重启MySQL,建立 一个MySQL帐号为同步专用
GRANT REPLICATION SLAVE,RELOAD,SUPER, ON *.* TO back@192.168.0.2 IDENTIFIED BY 'back' ;<br><br>FLUSH PRIVILEGES ;<br><br>2、配置
同步Slave<br><br>修改f文件,添加<br><br>server-id = 2<br><br>master-host = 192.168.0.1<br><br>master-user = back<br><br>master-password = back<br><br>master-port = 3306<br><br>replicate-ignore-db=mysql (我的是Ver 14.14 Distrib 5.1.22-rc版,这个参数好像用不上)<br><br>replicate-do-db=test
重启MySQL
3、启动同步
在主服务器A MySQL命令符下:
show master status;
显示(当然这个是我机器的情况,你的不可能跟我一样哈,只是个例子):
+------------------+----------+-------------------+------------------+<br><br> File Position Binlog_Do_DB Binlog_Ignore_DB <br><br>+------------------+----------+-------------------+------------------+<br><br> updatelog.000028 313361 test mysql <br><br>+------------------+----------+-------------------+------------------+
在从服务器A MySQL命令符下:
slave stop;<br><br>CHANGE MASTER TO MASTER_LOG_FILE='updatelog.000028',MASTER_LOG_POS=313361;<br><br>slave start;<br><br>用show slave statusG;看一下从服务器的同步情况<br><br>Slave_IO_Running: Yes<br><br>Slave_SQL_Running: Yes
如果都是yes,那代表已经在同步
往表里面写点数据测试一下看能不能 同步成功,如果不成功,绝对不是你的RP问题,再检查一下操作步骤!
4、配置 双向同步
修改B服务器的f,添加
log-bin=/var/log/mysql/updatelog<br><br>binlog-do-db=test<br><br>binlog-ignore-db=mysql
重启MySQL,建立 一个MySQL帐号为同步专用
GRANT REPLICATION SLAVE,RELOAD,SUPER, ON *.* TO back@192.168.0.1 IDENTIFIED BY 'back' ;<br><br>FLUSH PRIVILEGES ;
修改A服务器的f,添加
master-host = 192.168.0.2<br><br>master-user = back<br><br>master-password = back<br><br>master-port = 3306<br><br>replicate-ignore-db=mysql<br><br>replicate-do-db=test
重启MySQL
在主服务器B MySQL命令符下:
show master status;<br><br>+------------------+----------+-------------------+------------------+<br><br> File Position Binlog_Do_DB Binlog_Ignore_DB <br><br>+------------------+----------+-------------------+------------------+<br><br> updatelog.000028 13753 test mysql <br><br>+------------------+----------+-------------------+------------------+
在服务器A MySQL命令符下:
slave stop;<br><br>CHANGE MASTER TO MASTER_LOG_FILE='updatelog.000028',MASTER_LOG_POS=13753;<br><br>slave start;
其实也就是A->B单向同步的反向操作!双向同步,就这么基本 啦!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

In 2025, global digital virtual currency trading platforms are fiercely competitive. This article authoritatively releases the top ten digital virtual currency trading platforms in the world in 2025 based on indicators such as transaction volume, security, and user experience. OKX ranks first with its strong technical strength and global operation strategy, and Binance follows closely with high liquidity and low fees. Platforms such as Gate.io, Coinbase, and Kraken are at the forefront with their respective advantages. The list covers trading platforms such as Huobi, KuCoin, Bitfinex, Crypto.com and Gemini, each with its own characteristics, but investment should be cautious. To choose a platform, you need to consider factors such as security, liquidity, fees, user experience, currency selection and regulatory compliance, and invest rationally

PHP provides the following methods to delete data in MySQL tables: DELETE statement: used to delete rows matching conditions from the table. TRUNCATETABLE statement: used to clear all data in the table, including auto-incremented IDs. Practical case: You can delete users from the database using HTML forms and PHP code. The form submits the user ID, and the PHP code uses the DELETE statement to delete the record matching the ID from the users table.

Setting up a MySQL connection pool using PHP can improve performance and scalability. The steps include: 1. Install the MySQLi extension; 2. Create a connection pool class; 3. Set the connection pool configuration; 4. Create a connection pool instance; 5. Obtain and release connections. With connection pooling, applications can avoid creating a new database connection for each request, thereby improving performance.

Top 10 digital currency trading platforms: 1. OKX, 2. Binance, 3. Gate.io, 4. Huobi Global, 5. Kraken, 6. Coinbase, 7. KuCoin, 8. Bitfinex, 9. Crypto.com, 10. Gemini, these exchanges have their own characteristics, and users can choose the platform that suits them based on factors such as security, fees, currency selection, user interface and customer support.

Ranking of the top ten virtual currency trading platforms (latest in 2025): Binance: Global leader, high liquidity, and regulation has attracted attention. OKX: Large user base, supports multiple currencies, and provides leveraged trading. Gate.io: A senior exchange, with a variety of fiat currency payment methods, providing a variety of trading pairs and investment products. Bitget: Derivatives Exchange, high liquidity, low fees. Huobi: An old exchange that supports a variety of currencies and trading pairs. Coinbase: A well-known American exchange, strictly regulated. Phemex and so on.
