MySQL主从同步配置

MySQL主从同步的步骤:

  • 在主服务器上开启bin-log二进制日志功能,设置唯一的server_id(除了多实例外一般设置为ip地址最后一位),设置完成重启mysqld服务
  • 在从服务器上同样设置唯一的server_id
  • 在主服务器上授权REPLICATION SLAVE权限,允许从服务器同步数据
  • 复制数据前在主服务器上SHOW MASTER STATUS记录file和position
1. 准备两台MySQL服务器,确保服务器之间时间同步

master:192.168.42.129
slave : 192.168.42.130
MySQL数据库的安装配置见:
http://www.jianshu.com/p/31572010fe03

2. 设置主服务器bin-log文件
vim /etc/my.cnf文件

在 [mysqld] 主配置文件下,加入

log-bin=replicate-bin # 启用二进制日志,设置二进制文件名(自定义)
MySQL主从同步配置_第1张图片
log-bin
重启mysql服务
[root@master ~]# /etc/init.d/mysqld restart
3. 创建复制账号

这个账号必须具有REPLICATION SLAVE的权限,你可以为不同的从服务器创建不同的账号,也可以为所有从服务器创建统一的账号

进入master mysql服务:
[root@master ~]# mysql -uroot -p
Enter password: 
创建replicate账号用于复制
mysql> GRANT REPLICATION SLAVE ON *.* TO 'replicate'@'%' identified by 'replicate';
Query OK, 0 rows affected (0.07 sec)

mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.01 sec)

获取主服务器的二进制日志信息:

只读锁定后,所有数据库的写操作都将被拒绝,但是读操作可以继续。执行锁定可以防止在查看二进制日志信息的同时有人对数据进行修改操作,查看二进制日志信息后使用UNLOCK TABLES解锁即可

mysql> FLUSH TABLES WITH READ LOCK;
Query OK, 0 rows affected (0.19 sec)

mysql> SHOW MASTER STATUS;
+----------------------+----------+--------------+------------------+-------------------+
| File                 | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+----------------------+----------+--------------+------------------+-------------------+
| replicate-bin.000001 |     1234 |              |                  |                   |
+----------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)

mysql> UNLOCK TABLES;
Query OK, 0 rows affected (0.00 sec)
3. 对现有数据库进行快照备份

如果在使用二进制日志进行数据复制之前,主服务已经存在大量的数据库文件,可以使用mysqldump进行数据的备份还原操作。

主服务器上进行备份操作
[root@master ~]# mysqldump -uroot -pqinger --all-databases --lock-all-tables > /tmp/test.sql
Warning: Using a password on the command line interface can be insecure.
[root@master ~]# ls /tmp/test.sql 
/tmp/test.sql
将备份的sql文件复制到从服务器上进行还原
[root@master ~]# scp /tmp/test.sql [email protected]:/tmp/
[email protected]'s password: 
test.sql                                                                                                                                         100%  633KB 632.6KB/s   00:00 
[root@slave ~]# mysql -uroot -pqinger < /tmp/test.sql 
Warning: Using a password on the command line interface can be insecure.
4. 配置从服务器连接主服务器进行数据同步
进入mysql,连接到master服务器

指定主机名,用户名,密码,log文件,和log位置

mysql> CHANGE MASTER TO
    -> MASTER_HOST='192.168.42.129',
    -> MASTER_USER='replicate',
    -> MASTER_PASSWORD='replicate',
    -> MASTER_LOG_FILE='replicate-bin.000001',
    -> MASTER_LOG_POS=1309;
Query OK, 0 rows affected, 2 warnings (0.03 sec)
开启同步,查看同步状态

显示
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
表示同步正在进行

mysql> START SLAVE;
Query OK, 0 rows affected (0.08 sec)

mysql> SHOW SLAVE STATUS \G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.42.129
                  Master_User: replicate
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: replicate-bin.000001
          Read_Master_Log_Pos: 1309
               Relay_Log_File: localhost-relay-bin.000002
                Relay_Log_Pos: 287
        Relay_Master_Log_File: replicate-bin.000001
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB: 
          Replicate_Ignore_DB: 
           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: 1309
              Relay_Log_Space: 464
              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: 129
                  Master_UUID: c8baa742-b6c8-11e6-bac3-000c295183f1
             Master_Info_File: /usr/local/mysql/data/master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it
           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
1 row in set (0.00 sec)
master服务器创建数据库,slave服务器上查看是否存在
MySQL主从同步配置_第2张图片
master
MySQL主从同步配置_第3张图片
slave

你可能感兴趣的:(MySQL主从同步配置)