1. Detect communication
Check the IP addresses of the master and slave, and check whether communication is possible
Guarantee The network between master and slave is interconnected. Use the ping command to detect
. At this point we know that the master’s IP is 192.168.131.129 and the slave’s IP is 192.168.0.6. and can communicate with each other. Ensure that port 3306 is open
Check the firewall statussystemctl status firewalld.service
Temporary manual Start the firewallsystemctl start firewalld.service
Temporarily manually stop the firewallsystemctl stop firewalld.service
Permanently turn on the firewall (restart the service to take effect)systemctl enable firewalld.service
Permanently close the firewall (restart the service to take effect)systemctl disable firewalld.service
View the currently open port listfirewall-cmd --list- ports
2. Master configuration
1. Enable binary log
Configure log_bin and globally unique server-id, which are different from slave and cannot be configured the same (If the configuration is newly added to my.cnf, the MySQL service must be restarted)
vim /etc/my.cnf
Open the my.cnf file
2. Create an account for master-slave library communication
That is, create an account in the master for slave to log in to the master and read the binlog
Although we are The IP address viewed on Linux is 192.168.131.129, but when we create an account and log in, we do not write this IP address, but write 192.168.131.1. Because the virtual machine here uses NAT mode (if it is bridge mode, it can be used directly). When the virtual machine (master) communicates with the physical machine (slave), the virtual machine first sends the data to the gateway 192.168.131.1 (default communicate with VMnet8), 192.168.131.1 is then forwarded to the physical machine, so the physical machine receives the data of 192.168.131.1, so when we create an account for the slave on the master, we should write 192.168.131.1
If the slave is not configured with the gateway 192.168.131.1 address, vim /var/log/mysqld.log
When you open the error log, the following information will appear:
This means that the mslave permissions from 192.168.131.1 are not enough. That is because we configured the master to allow login from other places and did not allow login from the 192.168.131.1 address, resulting in insufficient permissions. .
Since the master received a request from 192.168.131.1, the error log shows 192.168.131.1
Command to create a user:
//如果嫌麻烦可以用%代替192.168.131.1,,它就可以匹配任何ip mysql> CREATE USER 'mslave'@'192.168.131.1' IDENTIFIED BY '1qaz@WSX'; //启动主从,在主库上给当前的mslave用户开启REPLICATION SLAVE主从复制的权限,从库就可以通过1qaz@WSX账户密码 //从192.168.131.1 IP地址来请求访问这台主库上的任意库里面的任意表*.*,同步这个主库的任意库里的任意表 mysql> GRANT REPLICATION SLAVE ON *.* to 'mslave'@'192.168.131.1' IDENTIFIED BY '1qaz@WSX'; mysql> FLUSH PRIVILEGES;
3. Get the log file name and position of binlog
show master status
1. Configure a globally unique server-id
Configure a globally unique server-id
Involving modifying the configuration file, you need to restart the MySQL service
This step of configuration is mainly used for IO threads to read binlog:
mysql> CHANGE MASTER TO MASTER_HOST='192.168.131.129', MASTER_PORT=3306, MASTER_USER='mslave', MASTER_PASSWORD='1qaz@WSX', MASTER_LOG_FILE='mysql-bin.000006', MASTER_LOG_POS=1262;
- ##MASTER_HOST: Specify
master’s ip
- MASTER_LOG_FILE:
binlog file name
- MASTER_LOG_POS:
position of binlog
3. Start the slave service
View the master-slave replication status through the
show slave status command, and show processlist
View the running status of the master and slave related threads
4. Possible problems in configuration
1. Network connection problem
Check the master-slave replication status through the show slave status command
然后再检查从库里面的配置信息是否正确 如果都正确,检查主库所在机器的3306端口是否正常 如果发现3306端口不能连通,就需要怀疑主库对端口有限制吗,也就是防火墙限制,就需要在防火墙把3306端口开放出来。 如果这个错误还没解决,就查看一个主库的错误日志 这说的就是从192.168.131.1的mslave权限不够,自己玩的时候,如果虚拟机是NAT模式,则需要写成VMnet8网关ip。如果都是物理机通信,那直接写正确的ip即可 可以在MySQL数据库下的mysql库的user表中更改允许登录的ip 然后重新赋予权限: 在master中查看show master status一下binlog日志文件名以及position,然后用命令重新配置slave,比如: 配置slave前需要stop slave,配置完成再start slave 错误原因:首先配置主从复制的时候,slave的mytest库中没有user表,而master的mytest库已经有user表了。配置好主从复制后直接drop table mytest.user,这就会写到binlog里面,然后在通过dump线程和IO线程将这个操作发送到从库的relay log,然后从库的SQL线程从relay log里把drop table mytest.user捞出来在从库执行这个SQL,可从库的mytest根本就没有user表,这就是删除一个不存在的表,于是出现错误了。 一般我们是不会做这样的操作的,我们一般都是主库配置以后,slave从数据开始增量进行同步,不会同步以后一开始就删主库里的东西,如果真的出现这样的问题了,随时可以通过 可以通过show slave status查看以下标识,IO线程出错一般是网络问题,SQL线程出错一般是SQL在slave库执行出现了问题telnet xxx.xxx.xxx.xxx 3306
/var/log/mysql/mysqld.log
,查看错误日志中提示的ip是否和自己允许slave登录的ip一致mysql> GRANT REPLICATION SLAVE ON *.* to 'mslave'@'xxx.xxx.xxx.xxx' IDENTIFIED BY '1qaz@WSX';
2. binlog的position问题
mysql> CHANGE MASTER TO MASTER_HOST='192.168.131.129',MASTER_PORT=3306,MASTER_USER='mslave',MASTER_PASSWORD='1qaz@WSX',
MASTER_LOG_FILE='mysql-bin.000006',MASTER_LOG_POS=1262;
3. SQL线程出错
show slave status
来查看主从库的状态来解决错误,如果是上图这个错误,
(1)可以在从库stop slave
,然后把位置重新设置一下,然后再start slave
,相当于重新开始主从同步的位置。
(2)可以在从库stop slave
,然后set global sql_slave_skip_counter=1;
(跳过一个错误),然后再start slave
重启从库的线程,相当于把错误跳过了,异常操作。
The above is the detailed content of How to configure master-slave replication in MySQL. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。


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

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.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

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

SublimeText3 English version
Recommended: Win version, supports code prompts!
