文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Mysql之主从复制

2023-09-04 21:09

关注

文章目录

1.Mysql主从复制原理

① 基于二进制文件实现

2.Mysql的复制类型

① 基于语句的复制(TSATEMENT,Mysql的默认类型)
② 基于行的复制(ROW)
③ 混合类型的复制(MIXED)

3.Mysql主从复制的工作过程

① Master节点将数据的改变记录成二进制日志(bin log),当Master上的数据发生改变时,则将其改变写入二进制日志中
slave节点会在一定时间间隔内对Master的二进制日志进行探测其是否发生改变,如果发生改变,则开始一个I/O线程请求 Master的二进制事件
③ 同时Master节点为每个I/O线程启动一个dump线程,用于向其发送二进制事件,并保存至slave节点本地的中继日志(Relay log)中,slave节点将启动SQL线程从中继日志中读取二进制日志,在本地重放,即解析成 sql 语句逐一执行,使得其数据和 Master节点的保持一致,最后I/O线程和SQL线程将进入睡眠状态,等待下一次被唤醒

1.首先关闭防火墙

systemctl stop firewalldsystemctl disable firewalldsetenforce 0

2.Mysql主从服务器时间同步

① 主服务器设置

yum install ntp -yvim /etc/ntp.conf--末尾添加--  server 127.127.247.0#设置本地是时钟源,注意修改网段  fudge 127.127.247.0 stratum 8#设置时间层级为8(限制在15内)service ntpd start
[root@www ~]# yum install ntp -y已加载插件:fastestmirror, langpacksfile:///mnt/repodata/repomd.xml: [Errno 14] curl#37 - "Couldn't open file /mnt/repodata/repomd.xml"正在尝试其它镜像。Loading mirror speeds from cached hostfile软件包 ntp-4.2.6p5-25.el7.centos.2.x86_64 已安装并且是最新版本无须任何处理[root@www ~]# vim /etc/ntp.confserver 127.127.247.0  fudge 127.127.247.0 stratum 8[root@www ~]#  service ntpd start

②从服务器设置

yum install ntp ntpdate -yservice ntpd start/usr/sbin/ntpdate 192.168.247.131#进行时间同步crontab -e  */30 * * * * /usr/sbin/ntpdate 192.168.247.131
[root@localhost yum.repos.d]# yum install ntp ntpdate -y已加载插件:fastestmirror, langpacksLoading mirror speeds from cached hostfile软件包 ntp-4.2.6p5-25.el7.centos.2.x86_64 已安装并且是最新版本软件包 ntpdate-4.2.6p5-25.el7.centos.2.x86_64 已安装并且是最新版本无须任何处理[root@localhost yum.repos.d]# service ntpd startRedirecting to /bin/systemctl start ntpd.service[root@localhost yum.repos.d]# /usr/sbin/ntpdate 192.168.247.13125 Jun 19:28:22 ntpdate[35364]: the NTP socket is in use, exiting[root@localhost yum.repos.d]# crontab -eno crontab for root - using an empty onecrontab: installing new crontab  */30 * * * * /usr/sbin/ntpdate 192.168.247.131

3.主服务器

① mysql配置文件

vim /etc/my.cnf  server-id=11  log-bin=mysql-bin#添加,主服务器开启二进制日志  binlog_format=mixed
[root@www ~]# vim /etc/my.cnf  server-id=11  log-bin=mysql-bin  binlog_format=mixed

② 选配项

 vim /etc/my.cnf  expire_logs_days=7#设置二进制日志文件过期时间,默认值为0,表示logs不过期  max_binlog_size=500M#设置二进制日志限制大小,如果超出给定值,日志就会发生滚动,默认值是1GB  skip_slave_start=1#阻止从库崩溃后自动启动复制,崩溃后再自动复制可能会导致数据不一致的  innodb_flush_logs_at_trx_commit=1     #双1设置  sync_binlog=1                         #双1设置

③ 实验操作

systemctl restart mysqldmysql -u root -pabc123grant replication slave on *.* to 'myslave'@'192.168.80.%' identified by '123456   #给从服务器授权flush privileges;show master status;
[root@www ~]# systemctl restart mysqld[root@www ~]# mysql -u root -pabc123mysql: [Warning] Using a password on the command line interface can be insecure.Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 2Server version: 5.7.41-log Source distributionCopyright (c) 2000, 2023, Oracle and/or its affiliates.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> mysql> grant replication slave on *.* to 'myslave'@'192.168.247.%' identified by '123456';Query OK, 0 rows affected, 1 warning (0.01 sec)mysql> flush privileges;Query OK, 0 rows affected (0.00 sec)mysql> show master status;+------------------+----------+--------------+------------------+-------------------+| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |+------------------+----------+--------------+------------------+-------------------+| mysql-bin.000017 |      604 |              |                  |                   |+------------------+----------+--------------+------------------+-------------------+1 row in set (0.01 sec)

4.从服务器

① mysql配置文件

vim /etc/my.cnf  server-id = 22#修改,注意id与Master的不同,两个slave的id也要不同  relay-log=relay-log-bin#开启中继日志,从主服务器上同步日志文件记录到本地  relay-log-index=relay-log-bin.index#定义中继日志文件的位置和名称,一般和relay-log在同一目录
[root@localhost yum.repos.d]# vim /etc/my.cnf  server-id = 22  relay-log=relay-log-bin  relay-log-index=relay-log-bin.index

② 选配项

innodb_buffer_pool_size=2048M#用于缓存数据和索引的内存大小,让更多数据读写内存中完成,减少磁盘操作,可设置为服务器总可用内存的 70-80%sync_binlog=0#MySQL不做任何强制性的磁盘刷新指令,而是依赖操作系统来刷新数据到磁盘innodb_flush_log_at_trx_commit=2#每次事务log buffer会写入log file,但一秒一次刷新到磁盘log-slave-updates=0#slave 从 master 复制的数据会写入二进制日志文件里,从库做为其他从库的主库时设置为 1relay_log_recovery=1#当 slave 从库宕机后,假如 relay-log 损坏了,导致一部分中继日志没有处理,则自动放弃所有未执行的 relay-log, 并且重新从 master 上获取日志,这样就保证了 relay-log 的完整性。默认情况下该功能是关闭的,将 relay_log_recovery 的值设置为 1 时, 可在 slave 从库上开启该功能,建议开启。

③ 实验操作

systemctl restart mysqldmysql -u root -pabc123change master to master_host='192.168.80.10',master_user='myslave',master_password='123456',master_log_file='mysql-bin.000002',master_log_pos=604;#配置同步,注意 master_log_file 和 master_log_pos 的值要与Master查询的一致start slave;#启动同步,如有报错执行 reset slave;show slave status\G#查看 slave 状态slave_IO_Running: Yes#负责与主机的io通信,Yes代表同步正常slave_SQL_Running: Yes#负责自己的slave mysql进程,Yes代表同步正常
[root@localhost yum.repos.d]# systemctl restart mysqld[root@localhost yum.repos.d]# mysql -uroot -pabc123mysql: [Warning] Using a password on the command line interface can be insecure.Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 3Server version: 5.7.41 Source distributionCopyright (c) 2000, 2023, Oracle and/or its affiliates.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql> change master to     -> master_host='192.168.247.131',master_user='myslave',master_password='123456',master_log_file='mysql-bin.000002',master_log_pos=604;Query OK, 0 rows affected, 2 warnings (0.02 sec)mysql> start slave;Query OK, 0 rows affected (0.00 sec)mysql> show slave status\G*************************** 1. row ***************************               Slave_IO_State: Connecting to master                  Master_Host: 192.168.247.131                  Master_User: myslave                  Master_Port: 3306                Connect_Retry: 60              Master_Log_File: mysql-bin.000002          Read_Master_Log_Pos: 604               Relay_Log_File: relay-log-bin.000001                Relay_Log_Pos: 4        Relay_Master_Log_File: mysql-bin.000002             Slave_IO_Running: Connecting            Slave_SQL_Running: Yes              Replicate_Do_DB:           Replicate_Ignore_DB:            Replicate_Do_Table:        Replicate_Ignore_Table:        ......

1.主服务器

create database db_test;
mysql>  create database db_test;Query OK, 1 row affected (0.01 sec)

2.从服务器

show databases;
mysql> show databases;+--------------------+| Database           |+--------------------+| information_schema || mysql              || performance_schema || sys                |+--------------------+4 rows in set (0.00 sec)

1.实验中可能发生的问题( IO 和 SQL 线程是NO状态情况)

① 网络不通

② my.cnf配置有问题

③ 密码、file文件名、pos偏移量不对

④ 防火墙没有关闭

2.MySQL主从复制延迟

① master服务器高并发,形成大量事务

② 网络延迟

③ 主从硬件设备导致:cpu主频、内存io、硬盘io

④ 是同步复制、而不是异步复制

3.解决方案

① 从库优化Mysql参数。比如增大innodb_buffer_pool_size,让更多操作在Mysql内存中完成,减少磁盘操作

② 从库使用高性能主机。包括cpu强悍、内存加大。避免使用虚拟云主机,使用物理主机,这样提升了i/o方面性

③ 从库使用SSD磁盘

④ 网络优化,避免跨机房实现同步

来源地址:https://blog.csdn.net/2301_76858832/article/details/131385448

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯