mysql主从

mysql主从

1. 主从简介

在现代企业中,数据显得尤为重要,而存储数据的数据库选择又五花八门,但无论是何种数据库,均存在着一种隐患。

想几个问题:

  • 用一台数据库存放数据,若此数据库服务器宕机了导致数据丢失怎么办?
  • 业务量大了,数据多了,访问的人多了,一台数据库无法保证服务质量了怎么办?

1.1 主从作用

  • 实时灾备,用于故障切换
  • 读写分离,提供查询服务
  • 备份,避免影响业务

1.2 主从形式

在这里插入图片描述

  • 一主一从
  • 主主复制
  • 一主多从—扩展系统读取的性能,因为读是在从库读取的
  • 多主一从—5.7开始支持
  • 联级复制

2. 主从复制原理

主从复制步骤:

在这里插入图片描述

  • 主库将所有的写操作记录到binlog日志中并生成一个log dump线程,将binlog日志传给从库的I/O线程
  • 从库生成两个线程,一个I/O线程,一个SQL线程
    • I/O线程去请求主库的binlog,并将得到的binlog日志写到relay log(中继日志) 文件中
    • SQL线程,会读取relay log文件中的日志,并解析成具体操作,来实现主从的操作一致,达到最终数据一致的目的

3. 主从复制配置

主从复制配置步骤:

1.确保从数据库与主数据库里的数据一样

2.在主数据库里创建一个同步账号授权给从数据库使用

3.配置主数据库(修改配置文件)

4.配置从数据库(修改配置文件)

需求:
搭建两台MySQL服务器,一台作为主服务器,一台作为从服务器,主服务器进行写操作,从服务器进行读操作

环境说明:

数据库角色IP应用与系统版本有无数据
主数据库192.168.30.129centos7/redhat7
mysql-5.7
有数据
从数据库192.168.30.131centos7/redhat7
mysql-5.7
无数据

3.1 mysql安装

请参考mysql安装

3.2 mysql主从配置

3.2.1 确保从数据库与主数据库里的数据一样

为确保从数据库与主数据库里的数据一样,先全备主数据库并还原到从数据库中

先查看主库有哪些库
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| hanyuce            |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
5 rows in set (0.00 sec)

再查看从库有哪些库
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

全备主库
全备主库时需要另开一个终端,给数据库加上读锁,避免在备份期间有其他人在写入导致数据不一致

mysql> flush tables with read lock;
Query OK, 0 rows affected (0.00 sec)

此锁表的终端必须在备份完成以后才能退出

备份主库并将备份文件传送到从库

[root@xiaoxiong ~]# mysqldump -uroot -p123456 --all-databases > all_20190819.sql
mysqldump: [Warning] Using a password on the command line interface can be insecure.

[root@xiaoxiong ~]# scp all_20190819.sql root@192.168.30.131:/root
The authenticity of host '192.168.30.131 (192.168.30.131)' can't be established.
ECDSA key fingerprint is SHA256:xR06Xjszg7vkgpO8qKatC0MjW1xJ6c8seKK3JY1o0SU.
ECDSA key fingerprint is MD5:a0:db:ec:6e:6d:9a:dc:04:5f:0b:cf:59:90:20:df:6e.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.30.131' (ECDSA) to the list of known hosts.
root@192.168.30.131's password: 
all_20190819.sql                       100%  783KB  52.7MB/s   00:00 

解除主库的锁表状态,直接退出交互式界面即可
mysql> quit
Bye


在从库上恢复主库的备份并查看从库有哪些库,确保与主库一致
[root@hyc ~]# mysql -uroot -p123456 < all_20190819.sql 
mysql: [Warning] Using a password on the command line interface can be insecure.
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| hanyuce            |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
5 rows in set (0.00 sec)

3.2.2 在主数据库里创建一个同步账号授权给从数据库使用

mysql> create user 'repl'@'192.168.30.131' identified by '123456';
Query OK, 0 rows affected (0.00 sec)

mysql> grant replication slave on *.* to 'repl'@'192.168.30.131';
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

3.2.3 配置主数据库

[root@xiaoxiong ~]# vim /etc/my.cnf
[root@xiaoxiong ~]# cat /etc/my.cnf
[mysqld]
basedir = /usr/local/mysql
datadir = /opt/data
socket = /tmp/mysql.sock
port = 3306
pid-file = /opt/data/mysql.pid
user = mysql
skip-name-resolve


log-bin=mysql-bin #启用binlog日志
server-id=1  #数据库服务器唯一标识符,主库的server-id值必须比从库的小

重启mysql服务
[root@xiaoxiong ~]# /etc/init.d/mysqld restart
Shutting down MySQL.. SUCCESS! 
Starting MySQL. SUCCESS! 
[root@xiaoxiong ~]# ss -antl
State       Recv-Q Send-Q Local Address:Port               Peer Address:Port              
LISTEN      0      128      *:22                   *:*                  
LISTEN      0      100    127.0.0.1:25                   *:*                  
LISTEN      0      128     :::22                  :::*                  
LISTEN      0      100    ::1:25                  :::*                  
LISTEN      0      80      :::3306                :::*                

查看主库的状态
mysql> show master status\G
*************************** 1. row ***************************
             File: mysql-bin.000001
         Position: 154
     Binlog_Do_DB: 
 Binlog_Ignore_DB: 
Executed_Gtid_Set: 
1 row in set (0.00 sec)

3.2.4 配置从数据库

[root@hyc ~]# vim /etc/my.cnf
[root@hyc ~]# cat /etc/my.cnf
[mysqld]
basedir = /usr/local/mysql
datadir = /opt/data
socket = /tmp/mysql.sock
port = 3306
pid-file = /opt/data/mysql.pid
user = mysql
skip-name-resolve

server-id=2 #设置从库的唯一标识符,从库的server-id值必须大于主库的该值
relay-log=relay_bin #启用中继日志relay-log


重启从库的mysql服务
[root@hyc ~]# /etc/init.d/mysqld restart
Shutting down MySQL.. SUCCESS! 
Starting MySQL. SUCCESS! 
[root@hyc ~]# ss -antl
State      Recv-Q Send-Q Local Address:Port               Peer Address:Port              
LISTEN     0      128     *:22                  *:*                  
LISTEN     0      100    127.0.0.1:25                  *:*                  
LISTEN     0      128    :::22                 :::*                  
LISTEN     0      100       ::1:25                 :::*                  
LISTEN     0      80     :::3306               :::*           


配置并启动主从复制
mysql> change master to
    -> master_host='192.168.30.129',
    -> master_user='repl',
    -> master_password='123456',
    -> master_log_file='mysql-bin.000001',
    -> master_log_pos=154;
Query OK, 0 rows affected, 2 warnings (0.01 sec)

mysql> start slave;
Query OK, 0 rows affected (0.00 sec)

mysql> show slave status \G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.30.129
                  Master_User: repl
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 154
               Relay_Log_File: relay_bin.000002
                Relay_Log_Pos: 320
        Relay_Master_Log_File: mysql-bin.000001
             Slave_IO_Running: Yes   此处必须是yes
            Slave_SQL_Running: Yes   此处必须是yes

3.2.5 测试验证

在主服务器的hanyuce库的xiaoxiong表中插入数据:

mysql> use hanyuce;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> insert into xiaoxiong(id,name,age) values (6,'dada',30),(7,'xiaoxion',22),(8,'dadaguia',5);
Query OK, 3 rows affected (0.00 sec)
Records: 3  Duplicates: 0  Warnings: 0

mysql> select * from xiaoxiong;
+----+----------+------+
| id | name     | age  |
+----+----------+------+
|  1 | daxiong  |   10 |
|  2 | haha     |   15 |
|  3 | xixi     |   17 |
|  4 | heihei   |   20 |
|  6 | dada     |   30 |
|  7 | xiaoxion |   22 |
|  8 | dadaguia |    5 |
+----+----------+------+
7 rows in set (0.00 sec)

在从数据库中查看数据是否同步:

mysql> use hanyuce;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select * from xiaoxiong;
+----+----------+------+
| id | name     | age  |
+----+----------+------+
|  1 | daxiong  |   10 |
|  2 | haha     |   15 |
|  3 | xixi     |   17 |
|  4 | heihei   |   20 |
|  6 | dada     |   30 |
|  7 | xiaoxion |   22 |
|  8 | dadaguia |    5 |
+----+----------+------+
7 rows in set (0.00 sec)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值