1.MySQL replication concept It means transferring the DDL and DML operations of the primary database to the replication server through binary logs, and then re-executing these log files on the replication server to keep the data of the replication server and the primary server synchronized. In the replication process, one server acts as the master, and one or more other servers act as slaves. The master rewrites updates to the binary log file and maintains an index of the file to track log rotations. These logs record updates sent to the slave servers. When a slave connects to a master, it informs the master of the location of the last successful update that the slave read in the log. The slave accepts any updates that occur from that point on, and then blocks and waits for notification of new updates from the master. 2. Purpose of Copying Data is synchronized through master-slave replication, and read-write separation (mysql-proxy) is used to improve the concurrent load capacity of the database, or it is used as a master-slave design to ensure that the application can be switched to the backup machine and continue to run in a very short time after the host stops responding. Advantages: (1) The database cluster system has multiple database nodes. If a single node fails, other normal nodes can continue to provide services. 3. Implementation of replication (3 methods) (1) DRBD is a software-implemented, shared-nothing storage replication solution that mirrors the contents of block devices between servers. The Mysql database replication operation is roughly divided into the following steps: (1) The master enables binary logging. The operation of enabling binary logging is described in detail in Log Management. 4. Centralized mode of mysql replication In versions after MySQL 5.1, the improvement in replication is the introduction of a new replication technology - row-based replication. This technology focuses on the records that have changed in the table, rather than the previous binlog mode. Starting from MySQL 5.1.12, this can be achieved using the following three modes. (1) SQL statement-based replication (SBR) Correspondingly, there are three formats of binlog: statement, row, and mixed. In Mbr mode, sbr mode is the default. The binlog format can be changed dynamically at runtime. The method of setting the master-slave replication mode is very simple. Just add one more parameter based on the previous replication configuration, as follows: binlog_format = "statement" #binlog_format="row" #binlog_format=”mixed” Of course, you can also dynamically modify the binlog format at runtime Mysql> set session binlog_format="statement" 5. Control the main server operation Master: 192.168.11.139 (1) Primary server: mysql> show variables like '%datadir%'; +---------------+--------------------------+ | Variable_name | Value | +---------------+--------------------------+ | datadir | /application/mysql/data/ | +---------------+--------------------------+ Enable binary logging on the primary server: mysql> show variables like 'log_bin'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | log_bin | OFF | +---------------+-------+ row in set (0.00 sec) OFF means binary logging is closed Steps to enable log 3: ①Open mysql installation directory/my.cnf log_bin[filename] In this statement, log-bin indicates that a binary file is to be opened; filename is the name of the binary log. If not specified, the default is the host name followed by -bin as the file name, and it is stored in the datadir directory by default. If you specify binary_log here to generate binary files only for the specified database, you need to add the following statement Binlog-do-db=db_name (database name) If you do not generate binary file logs for the specified database, you need to add the following statement Binlog-ignore-db-db_name (database name) ③Restart the mysql service. You can see the "binary_log.digital number" file in the MySQL installation directory/data folder, such as binary_log.00001. Each time the MySQL service is restarted, the binary file will be regenerated and the number in the file name will increase. After the boot is successful, modify the MySQL configuration file my.cnf and set the server-id. The code is as follows Server-id=1 Binlog-do-db=xscj Binlog-ignore-db=mysql Server-id=1: Each database server must be assigned a unique server-id, usually 1 for the master server. The server-ids of the master and slave servers cannot be the same. Binlog-do-db: indicates the database that needs to be copied. Here, xscj is used as an example. Binlog-ignore-db: indicates the database that does not need to be copied. Create the users required for replication on the master mysql> grant replication slave on *.* to rep_user@'%'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.01 sec mysql> show master status\G *************************** 1. row *************************** File: binary_log.000001 Position: 303 Binlog_Do_DB: Binlog_Ignore_DB: row in set (0.00 sec) Back up the data of the master host, save it in the /data/binary_dump.txt file, and then import it to the slave machine. The specific execution statement is as follows [root@localhost bin]# mysqldump -h localhost>/data/binary_dump.txt (2) Control slave server operations Modify the database configuration file of the slave server and configure it as follows: Server-id=2 ##Set the slave server id Master-host=192.168.11.129 Master-user=rep_user Master-password= ##Set the password to connect to the master server Replicate-do-db ##Set the database you want to synchronize. You can set multiple Master-port=<port> ##Configure the port number Restart the slave and re-execute the following command on the mysql of the slave host to shut down the slave service Mysql>stop slave; Set the slave to implement replication-related information and execute the following command Mysql>change master to >master_host='', >master_user='', >master_password='', >master_log_file='binary_log.000007', >master_log_pos=120; Input: show slave status\G is used to provide key parameter information about the slave server thread. Commonly used commands are as follows
The above is all the content of this article about the detailed analysis of replication in Mysql. I hope it will be helpful to everyone. Welcome to refer to: Introduction to fuzzy query method using instr in MySQL, Code analysis of user variables in MySQL query statements, Detailed explanation of JSON data type operation in MySQL operations, etc. If there are any deficiencies, please leave a message to point them out. If there are problems, we can fix them. Things are not static. You may also be interested in:
|
<<: Steps to run ASP.NET Core in Docker container
>>: jQuery plugin to achieve code rain effect
The project needs to use MySQL. Since I had alway...
The first time I wrote a MySQL FUNCTION, I kept g...
Today, when installing nginx on the cloud server,...
This article introduces the method of manually bu...
Table of contents npm Install the loader Import P...
Table of contents 1. Sub-route syntax 2. Examples...
This article example shares with you the specific...
Serve: # chkconfig --list List all system service...
Table of contents Comprehensive comparison From t...
This article mainly explains tables, which are no...
Let me first explain why the text is not vertical...
This article shares the specific code for Vue to ...
Preface: Front-end: jq+h5 to achieve the nine-gri...
Table of contents 1. Function definition 1.1 Func...
During the front-end development process, a situat...