简介
MySQL主从又叫做Replication、AB复制。简单讲就是A和B两台机器做主从后,在A上写数据,另外一台B也会跟着写数据,两者数据实时同步的
MySQL主从是基于binlog的,主上须开启binlog才能进行主从。
主从过程大致有3个步骤
1)主将更改操作记录到binlog里
2)从将主的binlog事件(sql语句)同步到从本机上并记录在relaylog里
3)从根据relaylog里面的sql语句按顺序执行
主上有一个log dump线程,用来和从的I/O线程传递binlog
从上有两个线程,其中I/O线程用来同步主的binlog并生成relaylog,另外一个SQL线程用来把relaylog里面的sql语句落地
主从配置
主上操作
安装mysql
vi /etc/my.cnf,增加server-id=130和log_bin=slx1
修改完配置文件后,启动或者重启mysqld服务(/etc/init.d/mysqld restart)
重启后会在/data/mysql/目录下生成(跟log_bin有关)
-rw-rw----. 1 mysql mysql 120 4月 11 19:03 slx1.000001
-rw-rw----. 1 mysql mysql 14 4月 11 19:03 slx1.index
把mysql库备份并恢复成slx库,作为测试数据
mysqldump -uroot mysql > /tmp/mysql.sql
mysql -uroot -e “create database slx”
mysql -uroot slx < /tmp/mysql.sql
创建用作同步数据的用户
grant replication slave on . to ‘repl‘@[slave_ip] identified by ‘password‘;
flush tables with read lock; 暂时把动作冻结,锁定
show master status; 显示结果
mysql> show master status;
+-------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+-------------+----------+--------------+------------------+-------------------+
| slx1.000001 | 652233 | | | |
+-------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
从上操作
安装mysql
查看my.cnf,配置server-id=132,要求和主不一样
修改完配置文件后,启动或者重启mysqld服务
把主上aming库同步到从上
可以先创建aming库,然后把主上的/tmp/mysql.sql拷贝到从上,然后导入aming库
mysql -uroot
stop slave;
change master to master_host=‘[ip]‘, master_user=‘repl‘, master_password=‘‘, master_log_file=‘[主上的File]‘, master_log_pos=[主上的position],
start slave;
还要到主上执行 unlock tables 解锁
原文地址:http://blog.51cto.com/13582610/2097216