码迷,mamicode.com
首页 > 数据库 > 详细

Mariadb学习笔记-主从复制

时间:2017-03-20 10:47:52      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:magedu mysql 主从复制 豌豆

Mariadb的主从复制

  • mysql的扩展模式:主从

  • 读写分离基于MHA实现

主服务器配置

*修改配置文件

[root@localhost ~]# vim /etc/my.cnf.d/server.cnf

[mysqld]server-id=1log-bin=master-loginnodb_file_per_table=ONskip_name_resolve=ON
  • 启动mariadb服务

[root@localhost ~]# systemctl start mariadb
[root@localhost ~]# mysql 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.44-MariaDB-log MariaDB Server

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

MariaDB [(none)]> show binary logs;+-------------------+-----------+| Log_name          | File_size |
+-------------------+-----------+| master-log.000001 |       245 |
+-------------------+-----------+1 row in set (0.00 sec)

MariaDB [(none)]> grant replication slave,replication client on *.* to ‘repluser‘@‘172.16.%.%‘ identified by ‘replpass‘;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> show binary logs;+-------------------+-----------+| Log_name          | File_size |
+-------------------+-----------+| master-log.000001 |       496 |
+-------------------+-----------+1 row in set (0.00 sec)

MariaDB [(none)]>
从服务器配置
  • 修改配置文件

[root@localhost ~]# vim /etc/my.cnf.d/server.cnf

[mysqld]server-id=2relay-log=relay-loginnodb_file_per_table=ONskip_name_resolve=ON
  • 启动服务器并授权

[root@yuan07 ~]# systemctl start mariadb[root@yuan07 ~]# mysqlWelcome to the MariaDB monitor.  Commands end with ; or \g.Your MariaDB connection id is 2Server version: 5.5.44-MariaDB MariaDB Server

Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

MariaDB [(none)]> change master to master_host=‘172.16.80.6‘,master_user=‘repluser‘,master_password=‘replpass‘,master_log_file=‘master-log.000003,master_log_pos=496‘;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]>
  • 授权完成后会生成两个文件

/var/lib/mysql/relay-log.info 该文件记录从主服务器的哪个日志开始复制
/var/lib/mysql/relay-master.info 该文件记录主服务器地址,账号密码信息

  • 启动从服务器的复制功能

MariaDB [(none)]> start slave;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> show slave status\G;*************************** 1. row ***************************
               Slave_IO_State: 
                  Master_Host: 172.16.80.6
                  Master_User: repluser
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: master-log.000001,master_log_pos=496
          Read_Master_Log_Pos: 4
               Relay_Log_File: relay-log.000001
                Relay_Log_Pos: 4
        Relay_Master_Log_File: master-log.000001,master_log_pos=496
             Slave_IO_Running: No
            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: 4
              Relay_Log_Space: 245
              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: NULL
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 1236
                Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: ‘Could not find first log file name in binary log index file‘
               Last_SQL_Errno: 0
               Last_SQL_Error: 
  Replicate_Ignore_Server_Ids: 
             Master_Server_Id: 1

此时,Slave_IO_Running,Slave_SQL_Running均应为yes,即可开始从主服务器上复制


主主模式

就是使用AB双服务器分别进行授权;

本文出自 “guo_ruilin” 博客,请务必保留此出处http://guoruilin198.blog.51cto.com/12567311/1908306

Mariadb学习笔记-主从复制

标签:magedu mysql 主从复制 豌豆

原文地址:http://guoruilin198.blog.51cto.com/12567311/1908306

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!