Experimental environment: 1. Three CentOS 7 servers 2. mysql5.7.26 (all three machines are installed via yum) Server List
If you haven't installed MySQL yet, please see the installation tutorial: MySQL installation 1. Overview: Architecture diagram: This kind of architecture is commonly used by start-ups and is also convenient for subsequent expansion. Features: 1. It can relieve the pressure of reading. 2. Low cost, fast and convenient deployment 3. Read-write separation 4. You can also reduce the pressure of reading the database by adding slaves in time 5. Single point of failure of the main database 6. Data consistency issues (caused by synchronization delays) 7. Once the host is down, write operations cannot be performed 2. Building a cluster 1. Modify the configuration file Use the following commands to modify the configuration files on the three servers respectively. Add the following content to the /etc/my.cnf MySQL configuration files of the three servers respectively:
2. Create a replication user in the master database Enter the following command under the mysql command to create a user for the slave library (slave) to copy the master library (master) mysql> grant replication slave on *.* to 'test'@'%' identified by '123456'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) 3. Associate the slave database with the master database Use the following command to view the status of the master library mysql> show master status; Output the following information, of course yours may be different from mine mysql> show master status; +------------------+----------+--------------+------------------+-------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set | +------------------+----------+--------------+------------------+-------------------+ | mysql-bin.000002 | 5141037 | | | | +------------------+----------+--------------+------------------+-------------------+ 1 row in set (0.00 sec) As you can see from the above results, you only need to look at File and Position here. The other two are whitelist and blacklist, which means which databases are synchronized and which are not synchronized. You can set them according to your needs. After recording the first two fields above (). Run the following commands on the two slaves: mysql> change master to master_host='47.100.222.111', master_port=3306, master_user='test', master_password='123456', master_log_file='mysql-bin.000002', master_log_pos=5141037; mysql> flush privileges; mysql> slave start; After the execution is complete, continue to execute the following statements on the slave library: mysql> show slave status\G; The following information is output:
If Slave_IO_Running: and Slave_SQL_Running: are both YES, the configuration is successful. At this point, the construction of one master and two slaves is completed, and the installation of one master and multiple slaves is similar. You can create a database or a table on the master database, and the slave database will replicate it. The above is a detailed explanation and integration of the MySQL cluster one-master-multiple-slave architecture introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Solution to Nginx 500 Internal Server Error
>>: Tutorial on customizing rpm packages and building yum repositories for Centos
Table of contents text LOCK parameter ALGORITHM p...
Table of contents 1. Preliminary preparation 1.1 ...
1. Solution 1.1 Describing the interface context-...
1. Docker installation and startup yum install ep...
This article mainly records the effect of using j...
Concept introduction: We know that the redo log i...
The specific code is as follows: <div id="...
Docker is an open source project that provides an...
Table of contents What is JSI What is different a...
Services provided by NFS Mount: Enable the /usr/s...
Preface: I have often heard about database paradi...
Since I often install the system, I have to reins...
Usage: date [options]... [+format] or: date [-u|-...
sed is a character stream editor under Unix, that...
Select the category selection. After testing, IE ...