美文网首页我爱编程
CentOS 搭建 MySql 主从备份

CentOS 搭建 MySql 主从备份

作者: muction | 来源:发表于2017-07-14 09:52 被阅读0次

    约定:

    192.168.21.128 Master

    192.168.21.129  Slave

    以下配置拷贝与网络

    配置篇

    一、配置MySQL主服务器(192.168.21.128)

    mysql -u root -p #进入MySQL控制台

    create database osyunweidb; #建立数据库osyunweidb

    insert into mysql.user(Host,User,Password) values('localhost','osyunweiuser',password('123456')); #创建用户osyunweiuser,密码123456

    grant all on osyunweidb.* to 'osyunweiuser'@'192.168.21.130' identified by '123456' with grant option; #授权用户osyunweiuser从192.168.21.130完全访问数据库,注意:这里的192.168.21.130是要连接数据库Web服务器IP

    insert into mysql.user(Host,User,Password) values('localhost','osyunweidbbak',password('123456')); #建立MySQL主从数据库同步用户osyunweidbbak密码123456

    flush privileges; #刷新系统授权表

    grant replication slave on *.* to 'osyunweidbbak'@'192.168.21.129' identified by '123456' with grant option; #授权用户osyunweidbbak只能从192.168.21.129这个IP访问主服务器192.168.21.128上面的数据库,并且只具有数据库备份的权限

    二、把MySQL主服务器192.168.21.128中的数据库osyunweidb导入到MySQL从服务器192.168.21.129中

    1、导出数据库osyunweidb

    mysqldump -u root -p --default-character-set=utf8 --opt -Q -R --skip-lock-tables osyunweidb > /home/osyunweidbbak.sql #在MySQL主服务器进行操作,导出数据库osyunweidb到/home/osyunweidbbak.sql

    备注:在导出之前可以先进入MySQL控制台执行下面命令

    flush tables with read lock; #数据库只读锁定命令,防止导出数据库的时候有数据写入

    unlock tables; #解除锁定

    scp /home/osyunweidbbak.sql root@192.168.21.129:/home #把home目录下的osyunweidbbak.sql 数据库文件上传到MySQL从服务器的home目录下面

    系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容 版权所有,转载请注明出处及原文链接

    2、导入数据库到MySQL从服务器

    mysql -u root -p #进入从服务器MySQL控制台

    create database osyunweidb; #创建数据库

    use osyunweidb #进入数据库

    source /home/osyunweidbbak.sql #导入备份文件到数据库

    mysql -u osyunweidbbak -h 192.168.21.128 -p #测试在从服务器上登录到主服务器

    三、配置MySQL主服务器(192.168.21.128)的my.cnf文件

    vi /etc/my.cnf #编辑配置文件,在[mysqld]部分添加下面内容

    server-id=1 #设置服务器id,为1表示主服务器,注意:如果原来的配置文件中已经有这一行,就不用再添加了。

    log-bin=mysql-bin #启动MySQ二进制日志系统,注意:如果原来的配置文件中已经有这一行,就不用再添加了。

    binlog-do-db=osyunweidb #需要同步的数据库名,如果有多个数据库,可重复此参数,每个数据库一行

    binlog-ignore-db=mysql #不同步mysql系统数据库

    :wq! #保存退出

    service mysqld restart #重启MySQL

    mysql -u root -p #进入mysql控制台

    show variables like 'server_id'; #查看server-id的值是否为1

    mysql> show variables like 'server_id';

    +---------------+-------+

    | Variable_name | Value |

    +---------------+-------+

    | server_id | 1 |

    +---------------+-------+

    1 row in set (0.00 sec)

    show master status; #查看主服务器,出现以下类似信息

    mysql> show master status;

    +------------------+----------+--------------+------------------+

    | File | Position | Binlog_Do_DB | Binlog_Ignore_DB |

    +------------------+----------+--------------+------------------+

    | mysql-bin.000011 | 107 | osyunweidb | mysql |

    +------------------+----------+--------------+------------------+

    1 row in set (0.00 sec)

    注意:这里记住File的值:mysql-bin.000011和Position的值:107,后面会用到。

    四、配置MySQL从服务器(192.168.21.129)的my.cnf文件

    vi /etc/my.cnf #编辑配置文件,在[mysqld]部分添加下面内容

    server-id=2 #设置服务器id,修改其值为2,表示为从数据库

    log-bin=mysql-bin #启动MySQ二进制日志系统,注意:如果原来的配置文件中已经有这一行,就不用再添加了。

    replicate-do-db=osyunweidb #需要同步的数据库名,如果有多个数据库,可重复此参数,每个数据库一行

    replicate-ignore-db=mysql #不同步mysql系统数据库

    read_only #设置数据库只读

    :wq! #保存退出

    service mysqld restart #重启MySQL

    mysql -u root -p #进入MySQL控制台

    show variables like 'server_id'; #查看server-id的值,必须为上面设置的2,否则请返回修改配置文件

    mysql> show variables like 'server_id';

    +---------------+-------+

    | Variable_name | Value |

    +---------------+-------+

    | server_id | 2 |

    +---------------+-------+

    1 row in set (0.01 sec)

    slave stop; #停止slave同步进程

    change master to master_host='192.168.21.128',master_user='osyunweidbbak',master_password='123456',master_log_file='mysql-bin.000011' ,master_log_pos=107; #执行同步语句

    slave start; #开启slave同步进程

    SHOW SLAVE STATUS\G #查看slave同步信息,出现以下内容

    mysql> SHOW SLAVE STATUS\G

    *************************** 1. row ***************************

    Slave_IO_State: Waiting for master to send event

    Master_Host: 192.168.21.128

    Master_User: osyunweidbbak

    Master_Port: 3306

    Connect_Retry: 60

    Master_Log_File: mysql-bin.000011

    Read_Master_Log_Pos: 107

    Relay_Log_File: mysqlslave-relay-bin.000004

    Relay_Log_Pos: 253

    Relay_Master_Log_File: mysql-bin.000011

    Slave_IO_Running: Yes

    Slave_SQL_Running: Yes

    Replicate_Do_DB: osyunweidb

    Replicate_Ignore_DB: mysql

    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: 107

    Relay_Log_Space: 560

    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

    1 row in set (0.00 sec)

    mysql>

    注意查看:

    Slave_IO_Running: Yes

    Slave_SQL_Running: Yes

    以上这两个参数的值为Yes,即说明配置成功!

    测试篇

    测试MySQL主从服务器是否正常运行

    1、进入MySQL主服务器(192.168.21.128)

    mysql -u root -p #进入MySQL控制台

    use osyunweidb #进入数据库

    CREATE TABLE test ( id int not null primary key,name char(20) ); #创建test表

    2、进入MySQL从服务器

    mysql -u root -p #进入MySQL控制台

    use osyunweidb #进入数据库

    show tables; #查看osyunweidb表结构,会看到有一个新建的表test,表示数据库同步成功

    mysql> show tables;

    +----------------------+

    | Tables_in_osyunweidb |

    +----------------------+

    | test |

    +----------------------+

    1 row in set (0.00 sec)

    至此,Linux下MySQL数据库主从同步配置完成!

    相关文章

      网友评论

        本文标题:CentOS 搭建 MySql 主从备份

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