Mysql实现数据库主从(Master/Slave)同步配置详解

要求

操作系统 :CentOS 7 
数据库版本:mysql5.6 或以上版本,本人使用的是 mysql5.7。
主机A192.168.56.103 (Master)
主机B:192.168.56.101 (Slave)

之所以强调mysql版本,是因为MySQL在5.6之前和之后的安装方式是不一样的。
这里假定你已经在主机A主机B安装好了mysql数据库,如果不会的,可以参考 Linux mysql5.7 安装及配置

Master的配置

在Linux环境下,主机A的MySQL的配置文件的位置是在 /etc/my.cnf ,编辑:

[root@localhost ~]# vi /etc/my.cnf

在该文件下指定Master的配置如下:

log-bin=mysql-bin
server-id=2                 # 用于标识唯一的数据库,这里设置为2,在设置从库的时候就需要设置为其他值。
binlog-ignore-db=information_schema     # 表示同步的时候ignore的数据库 
binlog-ignore-db=cluster    # 表示同步的时候ignore的数据库 
binlog-ignore-db=mysql      # 表示同步的时候ignore的数据库 
binlog-do-db=jffa           # 指定需要同步的数据库

然后重启mysql服务,并进入mysql控制台:

[root@localhost ~]# service mysqld restart //重启mysql服务
[root@localhost ~]# mysql -uroot -p123456  //进入mysql控制台 root为用户名,123456为密码,这是我的密码,你写你的

赋予从库权限帐号,允许用户在主库上读取日志,赋予192.168.56.101也就是Slave机器有File权限,只赋予Slave机器有File权限还不行,还要给它REPLICATION SLAVE权限才可以。

mysql> GRANT FILE ON *.* TO 'root'@'192.168.56.101' IDENTIFIED BY '123456';

mysql> GRANT REPLICATION SLAVE ON *.* TO 'root'@'192.168.56.101' IDENTIFIED BY '123456';

mysql> FLUSH PRIVILEGES;

再次重启mysql服务,登录后台查看主库信息:

[root@localhost ~]# service mysqld restart

[root@localhost ~]# mysql -uroot -p123456

mysql> show master status;
+------------------+----------+--------------+----------------------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB                 | Executed_Gtid_Set |
+------------------+----------+--------------+----------------------------------+-------------------+
| mysql-bin.000002 |      154 | jffa         | information_schema,cluster,mysql |                   |
+------------------+----------+--------------+----------------------------------+-------------------+
1 row in set (0.00 sec)

这里的 FilePosition是在配置Salve的时候要使用到的,Binlog_Do_DB表示要同步的数据库,Binlog_Ignore_DB表示Ignore的数据库,这些都是在配置的时候进行指定的。

Slave的配置

同样需要编辑主机B的/etc/my.cnf文件:

[root@localhost ~]# vi /etc/my.cnf

添加如下内容:

log-bin=mysql-bin
server-id=3
binlog-ignore-db=information_schema
binlog-ignore-db=cluster
binlog-ignore-db=mysql
replicate-do-db=jffa        # 备份的数据库名称
replicate-ignore-db=mysql
log-slave-updates
slave-skip-errors=all
slave-net-timeout=60

重启服务,进入控制台配置一把:

[root@localhost ~]# service mysqld restart
[root@localhost ~]# mysql -uroot -p123456

mysql> stop slave;  #关闭Slave
mysql> change master to master_host='192.168.56.103',master_user='root',master_password='123456',master_log_file='mysql-bin.000002', master_log_pos=154;

mysql> start slave;  #开启Slave

在这里指定Master的信息,master_log_file是在配置Master的时候的File选项, master_log_pos是在配置Master的Position选项,这里要进行对应。

通过show slave status \G;查看配置信息:

mysql> show slave status \G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.56.103
                  Master_User: root
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000002
          Read_Master_Log_Pos: 154
               Relay_Log_File: localhost-relay-bin.000002
                Relay_Log_Pos: 320
        Relay_Master_Log_File: mysql-bin.000002
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB: jffa
          Replicate_Ignore_DB: mysql
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 0
                   Last_Error: 
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 154
              Relay_Log_Space: 531
              Until_Condition: None
               Until_Log_File: 
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File: 
           Master_SSL_CA_Path: 
              Master_SSL_Cert: 
            Master_SSL_Cipher: 
               Master_SSL_Key: 
        Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 0
                Last_IO_Error: 
               Last_SQL_Errno: 0
               Last_SQL_Error: 
  Replicate_Ignore_Server_Ids: 
             Master_Server_Id: 2
                  Master_UUID: 1ad33afa-5261-11e8-a8b3-080027c4c4b3
             Master_Info_File: /var/lib/mysql/master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
           Master_Retry_Count: 86400
                  Master_Bind: 
      Last_IO_Error_Timestamp: 
     Last_SQL_Error_Timestamp: 
               Master_SSL_Crl: 
           Master_SSL_Crlpath: 
           Retrieved_Gtid_Set: 
            Executed_Gtid_Set: 
                Auto_Position: 0
         Replicate_Rewrite_DB: 
                 Channel_Name: 
           Master_TLS_Version: 
1 row in set (0.00 sec)

ERROR: 
No query specified

可以看到,已经配置成功。

接下来,你可以在Master主机A的数据库中新建数据库jffaSlave主机B的数据库中也新建一个数据库jffa
再主机A上对数据库jffa建表、删除表,对表的数据进行增删改查操作,Slave主机B的数据库也会被同步。反之不可。读写分离,一个数据库只负责更新,一个数据库只负责查询。

本文参考了 https://blog.csdn.net/xlgen157387/article/details/51331244

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值