search
HomeDatabaseMysql TutorialMysql复制(Replication)的实现_MySQL

bitsCN.com Mysql复制(Replication)的实现 个人需要做一个小工程,需要将3台Mysql服务器的数据进行同步操作,经过上网查资料,并进行了实际操作完成了基本构思。         首先准备了3台Centos6.2,搭配了Apache Mysql PHP 等基本Webserver配置         3台机分别是Master A:192.168.1.49                              Slave   B1:192.168.1.50                                     B2:192.168.1.51         我需要的环境是单向复制,从复制A的数据到B1和B2.令3台机的数据一致。 配置逻辑:     从高层来看,复制分成三步:    (1)    master将改变记录到二进制日志(binary log)中(这些记录叫做二进制日志事件,binary log events);    (2)    slave将master的binary log events拷贝到它的中继日志(relay log);    (3)    slave重做中继日志中的事件,将改变反映它自己的数据。 开始配置:         第一步:创建复制帐号         每个slave使用标准的MySQL用户名和密码连接master。进行复制操作的用户会授予REPLICATIONSLAVE权限。     用户名的密码都会存储在文本文件master.info中。假如,你想创建repl用户,如下:         1mysql> GRANT REPLICATION SLAVE, REPLICATION CLIENT ON *.*2-> TO repl@'192.168.1.%' IDENTIFIED BY '123456';    第二步:配置My.cnf     配置Master的My.cnf,该文件默认位置为/etc/my.cnf         接下来对master进行配置,包括打开二进制日志,指定唯一的servr ID。例如,在配置文件加入如下值:        [mysqld]        log-bin=mysql-bin        server-id=10         重启master,运行SHOW MASTER STATUS,输出如下:  Mysql复制(Replication)的实现_MySQL            配置Slave的My.cnf,该文件默认位置为/etc/my.cnf         Slave的配置与master类似,你同样需要重启slave的MySQL。如下:         log_bin = mysql-bin         server_id = 2            relay_log = mysql-relay-bin         log_slave_updates = 1         read_only = 1         server_id是必须的,而且唯一。slave没有必要开启二进制日志,但是在一些情况下,必须设置,例如,如果slave为其它slave的master,必须设置bin_log。在这里,我们开启了二进制日志,而且显示的命名(默认名称为hostname,但是,如果hostname改变则会出现问题)。 relay_log配置中继日志,log_slave_updates表示slave将复制事件写进自己的二进制日志(后面会看到它的用处)。 
 有些人开启了slave的二进制日志,却没有设置log_slave_updates,然后查看slave的数据是否改变,这是一种错误的配置。所以,尽量使用read_only,它防止改变数据(除了特殊的线程)。但是,read_only并是很实用,特别是那些需要在slave上创建表的应用。     第三步:启动slave         接下来就是让slave连接master,并开始重做master二进制日志中的事件。你不应该用配置文件进行该操作,而应该使用CHANGE MASTER TO语句,该语句可以完全取代对配置文件的修改,而且它可以为slave指定不同的master,而不需要停止服务器。如下:1mysql> CHANGE MASTER TO MASTER_HOST='192.168.1.49',2    -> MASTER_USER='repl',3    -> MASTER_PASSWORD='123456',4    -> MASTER_LOG_FILE='mysql-bin.000001',5    -> MASTER_LOG_POS=0;        MASTER_LOG_POS的值为0,因为它是日志的开始位置。然后,你可以用SHOW SLAVE STATUS语句查看slave的设置是否正确: 01mysql> SHOW SLAVE STATUS/G02*************************** 1. row ***************************03                 Slave_IO_State:04                Master_Host: server105                Master_User: repl06                Master_Port: 330607              Connect_Retry: 6008            Master_Log_File: mysql-bin.00000109        Read_Master_Log_Pos: 410             Relay_Log_File: mysql-relay-bin.00000111              Relay_Log_Pos: 412      Relay_Master_Log_File: mysql-bin.00000113           Slave_IO_Running: No14          Slave_SQL_Running: No15                             ...omitted...16      Seconds_Behind_Master: NULL        Slave_IO_State, Slave_IO_Running, 和Slave_SQL_Running表明slave还没有开始复制过程。日志的位置为4而不是0,这是因为0只是日志文件的开始位置,并不是日志位置。实际上,MySQL知道的第一个事件的位置是4。 为了开始复制,你可以运行: 01mysql> START SLAVE;02mysql> SHOW SLAVE STATUS/G03运行SHOW SLAVE STATUS查看输出结果:04*************************** 1. row ***************************05             Slave_IO_State: Waiting for master to send event06                    Master_Host: server107                Master_User: repl08                Master_Port: 330609              Connect_Retry: 6010            Master_Log_File: mysql-bin.00000111        Read_Master_Log_Pos: 16412             Relay_Log_File: mysql-relay-bin.00000113              Relay_Log_Pos: 16414      Relay_Master_Log_File: mysql-bin.00000115           Slave_IO_Running: Yes16          Slave_SQL_Running: Yes17                             ...omitted...18      Seconds_Behind_Master: 0注意,slave的I/O和SQL线程都已经开始运行,而且Seconds_Behind_Master不再是NULL。日志的位置增加了,意味着一些事件被获取并执行了。如果你在master上进行修改,你可以在slave上看到各种日志文件的位置的变化,同样,你也可以看到数据库中数据的变化。 你可查看master和slave上线程的状态。在master上,你可以看到slave的I/O线程创建的连接: 01mysql> show processlist /G02*************************** 1. row ***************************03     Id: 104   User: root05   Host: localhost:209606     db: test    07Command: Query08   Time: 009 State: NULL10   Info: show processlist11*************************** 2. row ***************************12     Id: 213   User: repl14   Host: localhost:214415     db: NULL16Command: Binlog Dump17   Time: 1838    18 State: Has sent all binlog to slave; waiting for binlog to be updated19   Info: NULL202 rows in set (0.00 sec)基本到这里就完成,至于后期的加强操作,我会在另行添加。 测试过程要主要的问题:1.请先配置好Mysql2.开通复制前请将Mysql的库和表的框架复制过去。(在测试一下能不能连表都复制过去!)   作者 Tingel bitsCN.com

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How do you alter a table in MySQL using the ALTER TABLE statement?How do you alter a table in MySQL using the ALTER TABLE statement?Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections?How do I configure SSL/TLS encryption for MySQL connections?Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL?How do you handle large datasets in MySQL?Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)?Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement?How do you drop a table in MySQL using the DROP TABLE statement?Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys?How do you represent relationships using foreign keys?Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do you create indexes on JSON columns?How do you create indexes on JSON columns?Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)?Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment