• MySQL-主从复制


    实验环境

    MySQL-master:192.168.200.111

    MySQL-slave1:192.168.200.112

    MySQL-slave2:192.168.200.113

    [root@localhost ~]# iptables -F
    [root@localhost ~]# systemctl stop firewalld
    [root@localhost ~]# setenforce 0

    建立时间同步环境,在主服务器上安装配置NTP时间同步服务器

    [root@localhost ~]# yum -y install ntp

    [root@localhost ~]# vim /etc/ntp.conf

    末行添加

    server 127.127.1.0

    fudge 127.127.1.0 startum 8

    [root@localhost ~]# systemctl restart ntpd

    在从服务器上同步时间

    [root@localhost ~]# yum -y install ntpdate

    [root@localhost ~]# ntpdate 192.168.200.111
    15 Oct 12:02:12 ntpdate[10406]: adjust time server 192.168.200.111 offset 0.008413 sec

    slave2服务器与slave1服务器相同

    配置MySQL Master主服务器

    [root@localhost mysql]# vim /etc/my.cnf

    [mysqld]

    server-id=1                      //三台不要相同
    log-bin=mysql-bin
    log-slave-updates=true   //手动添加,开启从日志

    [root@localhost ~]# systemctl restart mariadb

    给从服务器授权

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

    MariaDB [(none)]> grant replication slave on *.* to 'root'@'192.168.200.%' identified by '123456';
    Query OK, 0 rows affected (0.00 sec)

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

    MariaDB [(none)]> show master status;
    +------------------+----------+--------------+------------------+
    | File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
    +------------------+----------+--------------+------------------+
    | mysql-bin.000010 | 474 |                 |                        |
    +------------------+----------+--------------+------------------+
    1 row in set (0.00 sec)

    之前主服务器有数据需要先传给从服务器

    主:mysqldump -uroot -all-databases > /root/alldbacup.sql

    scp传给从服务器

    从:mysql -uroot -p <  /root/alldbacup.sql

    配置从服务器

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

    [mysqld]

    server-id=2                                               //id号不能相同
    relay-log=relay-log-bin
    relay-log-index=slave-relay-bin.index 

    [root@localhost ~]# systemctl restart mariadb

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

    MariaDB [(none)]> stop slave;
    Query OK, 0 rows affected, 1 warning (0.01 sec)

    MariaDB [(none)]> change master to
    -> master_host='192.168.200.111',
    -> master_user='root',
    -> master_password='123456',
    -> master_log_file='mysql-bin.000010',
    -> master_log_pos=474;
    Query OK, 0 rows affected (0.01 sec)

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

    MariaDB [(none)]> show slave status G;
    *************************** 1. row ***************************
    Slave_IO_State: Waiting for master to send event
    Master_Host: 192.168.200.111
    Master_User: root
    Master_Port: 3306
    Connect_Retry: 60
    Master_Log_File: mysql-bin.000010
    Read_Master_Log_Pos: 474
    Relay_Log_File: relay-log-bin.000002
    Relay_Log_Pos: 529
    Relay_Master_Log_File: mysql-bin.000010
    Slave_IO_Running: Yes
    Slave_SQL_Running: Yes

    ........................................

    通过查看slave状态,确保Slave_IO_Running: Yes      Slave_SQL_Running: Yes

    slave2配置相同

    在主服务器创建数据库,在从服务器查看是否同步

    主:

    MariaDB [(none)]> create database db_test;
    Query OK, 1 row affected (0.00 sec)

    MariaDB [(none)]> show databases;
    +--------------------+
    | Database |
    +--------------------+
    | information_schema   |
    | db_test        |
    | mysql        |
    | performance_schema |
    | test |
    +--------------------+
    5 rows in set (0.00 sec)

    从:

    MariaDB [(none)]> show databases;
    +--------------------+
    | Database |
    +--------------------+
    | information_schema   |
    | db_test        |
    | mysql        |
    | performance_schema |
    | test |
    +--------------------+
    5 rows in set (0.00 sec)

  • 相关阅读:
    android -- eclipse 环境搭建
    android AVD坑(1) -- no images system installed for this target
    android AVD坑(1) -- no images system installed for this target
    简单的轮播
    C# 使用NPOI 处理Excel(Datable与Excel相互转换)
    C盘突然爆满
    IIS中 flv、swf 文件无法播放
    webservice 尝试加载 Oracle 客户端库时引发 BadImageFormatException。如果在安装 32 位 Oracle 客户端组件的情况下运行,将出现此问题
    window server 2008 安装Oracle10g
    ora-01033 oracle initialization or
  • 原文地址:https://www.cnblogs.com/zhiyuan-yu/p/11678413.html
Copyright © 2020-2023  润新知