美文网首页
centos7上mariadb主从复制

centos7上mariadb主从复制

作者: 是小懒呀 | 来源:发表于2020-01-03 10:12 被阅读0次
    1 mariadb基本命令

    a.启动mysql

    systemctl start mariadb
    
    2.linux客户端连接自己
    mysql -uroot -p -h 127.0.0.1
    
    3.远程链接mysql服务端
    mysql -uroot -p -h 192.168.1.197
    

    远程授权:

    grant all privileges on *.* to root@"192.168.1.100" identified by "redhat";
    flush privileges
    
    4.修改mysql密码
    MariaDB [(none)]> set password = PASSWORD('redhat123');
    
    5.创建mysql用户
    create user xiaochun@'%' identified by 'xc666';
    
    6.查询mysql库中的用户信息
    use mysql;
    select host,user,password from user;
    
    7.授权语句

    给李俊这个用户,授予创建数据库的权限

    mysql使用grant命令对账户进行授权,grant命令常见格式如下

    grant 权限 on 数据库.表名 to 账户@主机名 对特定数据库中的特定表授权
    grant 权限 on 数据库.* to 账户@主机名   对特定数据库中的所有表给与授权
    grant 权限1,权限2,权限3 on . to 账户@主机名    对所有库中的所有表给与多个授权
    grant all privileges on . to 账户@主机名    对所有库和所有表授权所有权限

    授予小春创建的权限,对于所有的库表生效

    grant create on *.* to xiaochun@"%" identified by 'xc666';
    

    授予小春用户,只有创建mymysql数据库的权限

    grant create on mymysql.* to xiaochun@"%" identified by 'xc666';
    

    授予用户最大的权限,所有的权限

    grant all privileges on *.* to username@'%' identified by 'password';
    
    8.移除权限
    MariaDB [(none)]> revoke all privileges on *.* from xiaochun@"%" identified by 'xc666';
    
    9.数据库的备份与恢复
    备份
    mysqldump -u root -p --all-databases > /tmp/db.sql
    
    数据导入,方式有2种
    source /tmp/db.sql;
    
    第二种
    mysql -uroot -p < /tmp/db.sql
    
    第三种

    navicat

    第四种,如果你数据量特别大的话,使用第三方工具

    xtrabackup

    主从复制的7个步骤

      1. 主数据库写入数据之后, 会有data changes(数据变化)记录
      1. 有变化记录之后,将增删改的一些sql语句记录到本地的Binary log(二进制日志)中
      1. 从库会一直开启着一个线程
      1. 通过线程去读取这个二进制日志的内容
      1. 从库会将数据写入到自己的Relay log(中继日志)中
      1. 从库会将中继日志中的操作转化为SQL thread(SQL语句)
      1. 通过转化的SQL语句写入到自己的数据库, 两边的数据就一致了
    mariadb主从复制实验

    准备两台数据库服务器
    主服务器: 192.168.11.247
    从服务器: 192.168.11.246

    在主服务器(192.168.11.247)上操作

    如果数据库是新安装的数据库的话, 没有中文配置, 还需要添加中文配置

    vim /etc/my.cnf
    
    [mysqld]
    character-set-server=utf8
    collation-server=utf8_general_ci
    log-error=/var/log/mysqld.log
    server-id=1
    log-bin=qishi-logbin
    
    [client]
    default-character-set=utf8
    [mysql]
    default-character-set=utf8
    

    启动mariadb

    systemctl start mariadb
    

    新建用于主从同步的用户xixi, 允许所有ip登录主库

    create user 'xixi'@'%' identified by 'xixi666';
    

    给从库账号授权,给xixi从主库复制的权限

    grant relication slave on *.* to 'xixi'@'%';
    

    检查主库创建的复制账号

    select user,host from mysql.user;
    

    检查授权账号的权限

    show grants for xixi@'%';
    

    对主数据库锁表设置只读, 防止数据写入, 数据复制失败

    flush table with read lock;
    

    检查主库的状态,并记录下日志文件的名字和位置

    show master status;
    

    记录下主数据库的写入状态和日志文件的名字

    锁表后,再单独打开一个ssh窗口, 导出数据库的所有数据,

    在主库上导出数据

    mysqldump -u root -p --all-databases > /opt/lanmaster.sql
    

    在丛库(192.168.11.246)上配置

    关闭数据库服务

    systemctl stop mariadb
    

    在丛库(192.168.11.246)上打开/etc/my.cf

    如果是新安装的数据库, 还需要添加中文配置

    [mysqld]
    character-set-server=utf8
    collation-server=utf8_general_ci
    log-error=/var/log/mysqld.log
    [client]
    default-character-set=utf8
    [mysql]
    default-character-set=utf8
    
    server-id=3
    read-only=true
    

    重启数据库

    systemctl restart mariadb
    

    将主库(192.168.11.247)导出的数据库文件拷贝到从库(192.168.11.246)中

    scp 192.168.11.247:/opt/lanmaster.sql /opt/
    

    导入主库传过来的数据库文件, 保持丛库的数据与主库一致

    mysql -u root -p
    source /opt/lanmaster.sql
    

    配置丛库(192.168.11.246)复制的参数, slave丛库连接master主库(192.168.11.247)的配置

    mysql > change master to master_host='192.168.11.247',
    master_user='xixi',
    master_password='xixi666',
    master_log_file='lan-logbin.000001',
    master_log_pos=469;
    

    启动丛库的同步开关, 测试主从复制的情况

    start slave;
    

    查看复制状态

    MariaDB [(none)]> show slave status\G;
    ***************************1\. row ***************************
    Slave_IO_State: Waiting for master to send event
    Master_Host: 192.168.11.247
    Master_User: xixi
    Master_Port: 3306
    Connect_Retry: 60
    Master_Log_File: lan-logbin.000002
    Read_Master_Log_Pos: 649
    Relay_Log_File: mariadb-relay-bin.000003
    Relay_Log_Pos: 934
    Relay_Master_Log_File: lan-logbin.000002
    Slave_IO_Running: Yes
    Slave_SQL_Running: Yes
    

    注意: 如果看到Slave_IO_Running和Slave_SQL_Running这两个参数都为yes, 说明主从同步配置成功,否则需要检查并重新配置

    最后在主库上的操作

    解锁主库的写入

    unlock tablse;
    

    如果丛库上面的普通用户无法在丛库上登录, 就重新创建一个用户

    create user 'haha'@'%' identified by 'haha666';
    grant replication slave on *.* to 'haha'@'%';
    

    相关文章

      网友评论

          本文标题:centos7上mariadb主从复制

          本文链接:https://www.haomeiwen.com/subject/cmfzoctx.html