MySQL主从配置

MySQL主从配置_第1张图片

一、MySQL主从复制原理剖析

Mysql主从同步其实是一个异步复制的过程,要实现复制首先需要在master上开启bin-log日志功能,整个过程需要开启3个线程,分别是Master开启IO线程,slave开启IO线程和SQL线程。

  • 1、在从服务器执行slave start,从服务器上IO线程会通过授权的用户连接上master,并请求master从指定的文件和位置之后发送bin-log日志内容。
  • 2、Master服务器接收到来自slave服务器的IO线程的请求后,master服务器上的IO线程根据slave服务器发送的指定bin-log日志之后的内容,然后返回给slave端的IO线程。(返回的信息中除了bin-log日志内容外,还有本次返回日志内容后在master服务器端的新的binlog文件名以及在binlog中的下一个指定更新位置。)
  • 3、Slave的IO线程接收到信息后,将接收到的日志内容依次添加到Slave端的relay-log文件的最末端,并将读取到的Master端的 bin-log的文件名和位置记录到master-info文件中,以便在下一次读取的时候能够清楚的告诉Master"我需要从某个bin-log的哪 个位置开始往后的日志内容,请发给我";
  • 4、Slave的Sql线程检测到relay-log中新增加了内容后,会马上解析relay-log的内容成为在Master端真实执行时候的那些可执行的内容,并在自身执行。

二、MySQL主从搭建

需要准备两台装好MySQL服务的机器:

1、修改配置文件 vim/etc/my.cnf(修改后要重启服务)
主服务器中添加(master):
log-bin=mysql-bin
server-id=1

从服务器中添加(slave):
#id与主不一致即可
server-id=2
2、在Master数据库服务器上设置权限,执行如下命令:
添加同步账号,并查看主服务状态
mysql> grant  replication  slave  on *.* to  'tongbu'@'%'  identified by  '123456';
mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 |      439 |              |                  |                   |
+------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
3、然后在slave服务器指定master IP和同步的pos点:
mysql> change master to master_host='118.89.221.87',master_user='tongbu',master_password='123456',master_log_file='mysql-bin.000001',master_log_pos=439;
Query OK, 0 rows affected, 2 warnings (0.02 sec)

4、在slave启动slave start,并执行show slavestatus\G**查看Mysql主从状态:

Slave_IO_Running: Yes
Slave_SQL_Running: Yes
两个状态为YES,代表slave已经启动两个线程,一个为IO线程,一个为SQL线程。

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

mysql> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 118.89.221.88
                  Master_User: tongbu
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 439
               Relay_Log_File: iz2zecxg7ci0tu3ipvapu5z-relay-bin.000002
                Relay_Log_Pos: 320
        Relay_Master_Log_File: mysql-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: 439
              Relay_Log_Space: 545
              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: 1
                  Master_UUID: cc083239-fc22-11e7-b685-52540018eca8
             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)
5、主库做增删改查操作,如果从库也有相应的修改则代表Mysql主从同步搭建成功



bin-log文件存放位置

/var/lib/mysql
查看文件:
[root@VM_36_centos mysql]# mysqlbinlog mysql-bin.000001 |more
mysqlbinlog: [ERROR] unknown variable 'default-character-set=utf8'

查看时若报以上错误,可用如下解决方法:
1、修改配置文件 —永久生效
    Linux环境下的/etc/my.cnf
    [client]
    #设置MySQL客户端的字符集
    default-character-set=utf8
    把client下的default-character-set=utf8修改成character-set-server = utf8
    然后重启生效
2、无需重启环境
    使用--no-defaults命令查看
    [root@VM_36_centos mysql]# mysqlbinlog --no-defaults  mysql-bin.000001 |more

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