标签:sla 原理 ide 参数 产生 lin perm start 操作
mysql 主从MySQL主从又叫做Replication、AB复制。简单讲就是A和B两台机器做主从后,在A上写数据,另外一台B也会跟着写数据,两者数据实时同步。
MySQL主从是基于binlog的,主上须开启binlog才能进行主从
主从过程大致有3个步骤:
mysql主从共有三个线程
1、数据备份,主机器宕机,从机器还能随时供服务
2、作为一个从库,读的库,减轻主库的压力,数据备份且可以分担主机器被调用数据时的压力,mysql主从,是有方向性的,写数据,必须从主机器开始;如果不依照原理会导致数据紊乱。
两台机器都安装并启动mysql。
编辑/etc/my.cnf配置文件
[root@localhost ~]# vim /etc/my.cnf
……
server-id=131
// 自定义
log_bin=testlinux
// 指定log前缀
重启mysql服务
[root@localhost ~]# /etc/init.d/mysqld restart
Shutting down MySQL.. SUCCESS!
Starting MySQL. SUCCESS!
[root@localhost ~]# ls -l /data/mysql
-rw-rw----. 1 mysql mysql 120 1月 23 21:00 testlinux.000001
-rw-rw----. 1 mysql mysql 19 1月 23 21:00 testlinux.index
// 此时,/data/mysql目录下会产生两个新的文件
// 之后还会生成更多以testlinux开头的文件
// 这些文件都非常重要,是实现主从的根本,没有这些文件主从也无法完成
创建一个数据库为实验做准备
[root@localhost ~]# mysql -uroot -p
......
MySQL > create database testlinux;
Query OK, 1 row affected (0.00 sec)
// 二进制文件testlinux.000001 大小增加,它里面记录了数据库的创建过程。
创建一个用于同步数据的用户
[root@localhost ~]# mysql -uroot -p
......
mysql> grant replication slave on *.* to ‘repl‘@‘192.168.159.132‘ identified by ‘112233‘;
Query OK, 0 rows affected (0.01 sec)
// IP为“从”的IP
mysql> flush tables with read lock;
Query OK, 0 rows affected (0.12 sec)
// 锁定数据表(目的是暂时使其不能继续写,保持现有状态用于同步)
mysql> show master status;
+-------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+-------------------+----------+--------------+------------------+-------------------+
| testlinux.000001 | 441 | | | |
+-------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
#记住file和position(设置主从同步时会使用)
备份主库中的所有数据库
[root@localhost ~]# mysqldump -uroot -p112233 test > /tmp/test.sql
[root@localhost ~]# mysqldump -uroot -p112233 zrlog > /tmp/zrlog.sql
[root@localhost ~]# mysqldump -uroot -p112233 testlinux > /tmp/testlinux.sql
[root@localhost ~]# vim /etc/my.cnf
……
server-id=130
……
// 增加一个sever-id 和主不一样就行
重启mysql
[root@localhost ~]# /etc/init.d/mysqld restart
Shutting down MySQL.. SUCCESS!
Starting MySQL. SUCCESS!
将主中备份的数据库发送到从中
[root@localhost ~]# scp 192.168.159.131:/tmp/*.sql /tmp/
The authenticity of host ‘192.168.159.131 (192.168.159.131)‘ can‘t be established.
ECDSA key fingerprint is b2:66:7f:db:00:38:59:11:9e:75:75:02:fd:7a:95:d7.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added ‘192.168.159.131‘ (ECDSA) to the list of known hosts.
root@192.168.159.131‘s password:
testlinux.sql 100% 0 0.0KB/s 00:00
test.sql 100% 0 0.0KB/s 00:00
zrlog.sql 100% 0 0.0KB/s 00:00
创建库
[root@localhost ~]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor.
......
mysql> create database testlinux;
Query OK, 1 row affected (0.00 sec)
mysql> create database test;
Query OK, 1 row affected (0.00 sec)
mysql> create database zrlog;
Query OK, 1 row affected (0.00 sec)
恢复数据库
[root@localhost ~]# mysql -uroot -p159820 test < /tmp/test.sql
[root@localhost ~]# mysql -uroot -p159820 zrlog < /tmp/zrlog.sql
[root@localhost ~]# mysql -uroot -p159820 testlinux < /tmp/testlinux.sql
// 该过程要保证主从数据库内容一致
实现主从同步
[root@localhost ~]# mysql -uroot -p
.....
mysql> stop slave;
Query OK, 0 rows affected, 1 warning (0.06 sec)
mysql> change master to master_host=‘192.168.159.131‘,master_user=‘repl‘,master_password=‘112233‘,master_log_file=‘testlinux.000001‘,master_log_pos=441;
Query OK, 0 rows affected, 2 warnings (0.02 sec)
// IP为主的IP;file、pos分别为主的filename和position。
mysql> start slave;
Query OK, 0 rows affected (0.00 sec)
判断主从是否配置成功
mysql> show slave status\G
......
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it
......
解锁主库的表(在主上操作)
[root@localhost ~]# mysql -uroot -p
......
mysql> unlock tables;
Query OK, 0 rows affected (0.00 sec)
......
主上几个配置参数(在/etc/my.cnf中配置)
从上几个配置参数(在/etc/my.cnf中配置)
replicate_ignore_table= 忽略指定的表
注意: 进行从服务器的配置时尽量使用参数“replicatewild”,使匹配更精确,提升使用性能。
测试
主服务器:
mysql> show tables;
+---------------------------+
| Tables_in_adaitest |
+---------------------------+
| columns_priv |
| db |
| event |
+---------------------------+
删除表:
mysql> drop table db;
mysql> show tables;
+---------------------------+
| Tables_in_adaitest |
+---------------------------+
| columns_priv |
| event |
+---------------------------+
从服务器:
主服务器删除表之前:
mysql> show tables;
+---------------------------+
| Tables_in_adaitest |
+---------------------------+
| columns_priv |
| db |
| event |
+---------------------------+
主服务器删除表之后:
mysql> show tables;
+---------------------------+
| Tables_in_adaitest |
+---------------------------+
| columns_priv |
| event |
+---------------------------+
标签:sla 原理 ide 参数 产生 lin perm start 操作
原文地址:http://blog.51cto.com/754599082/2064416