主从复制-配置

建立基本的主从复制可以总结为以下三个步骤:

配置一个master服务器

配置一个slave服务器

将slave连接至master。

1)、配置master服务器:

要求master服务器开启二进制日志(binary log)和唯一的服务器ID。二进制日志记录了master上的所有变更,并且可以在其他服务器重新执行。服务器ID用于区分服务器。这两部分内容都是需要更改/etc/my.cnf文件,需要停止mysql服务器。

在[mysqld]小节增加如下内容:

log_bin=master-bin#binlog日志文件的基本名

log_bin_index=master-bin-index#binlog日志文件的索引文件名。

expire_logs_days=14#binlog文件保留的天数。0代表永不删除

skip_slave_start#指定复制进程就不会随着数据库的启动而启动

sync_binlog=1#指定binlog文件多久军民一致一次磁盘,值实际为事务提交的次数。

slave_net_timeout=60#设置在多久没收到数据后认为网络超时,之后Slave的IO线程会重新连接Maste

server_id=165

在master创建一个复制用户

mysql> grant replication slave on *.* to”repl_user”@’192.168.10.%’ identified by “123456”;

2)、配置slave服务器

在slave服务器上,常规情况下我们只需要配置一个唯一的serverID,然后分别使用relay-log和relay-log-index选项配置中继日志文件和中继日志索引文件即可。在slave服务器上停止mysql服务,编辑slave服务器的/etc/my.cnf文件。

在[mysqld]小节增加如下内容:

server-id=166

relay_log=slave-relay-bin

relay_log_index=slave-relay-bin-index

log_slave_updates=1

配置主从服务器的配置后,重新启动两个服务器上的mysqld服务。

3)、同步数据

在正式开启主从复制前,需要保证master与slave服务器上的数据是一致,我们需要在master上备份数据库,然后在slave上恢复数据库,并记录下master上当前相关二进制日志的信息。

mysql> flush tables withread lock;

Query OK, 0 rows affected (0.00sec)

mysql> show master status;

+——————-+———-+————–+——————+——————-+

| File| Position | Binlog_Do_DB |Binlog_Ignore_DB | Executed_Gtid_Set |

+——————-+———-+————–+——————+——————-+

| master-bin.000002 |334 ||||

+——————-+———-+————–+——————+——————-+

1 row in set (0.00 sec)

mysql>

锁定数据库,并记录二进制文件在位置

[root@linux-node1 ~]#mysqldump-uroot –p123456 -A -B –events –default-character-set>/opt/$(date +%F).sql

[root@linux-node1 ~]# ll/opt/2017-03-31.sql

-rw-r–r– 1 root root 203 Mar31 16:53 /opt/2017-03-31.sql

[root@linux-node1 ~]#

备份所有库,这里使用了mysqldump命令,有很多参数,具体大家可以查阅相关资料,其中有一个参数比较有用,–master-data选项使mysqldump产生change master to语句,值为1时,产生可用的change master to完整语句,为2时,该语句被注释。

mysql> unlock tables;

Query OK, 0 rows affected (0.00sec)

mysql>

解锁主库

[root@linux-node2 ~]# mysql-uroot -p123456

Warning: Using a password onthe command line interface can be insecure.

[root@linux-node2 ~]#

使用主库的备份文件在从库上恢复数据库,这样master与slave上的数据就是相同的了。

4)、slave连接master并启动主从复制

mysql>change master to master_host = ‘192.168.10.71’,master_port = 3306,master_user = ‘repl_user’,master_password = ‘123456’,master_log_file =’master-bin.000002′,master_log_pos = 334;

mysql> start slave;

Query OK, 0 rows affected (0.01sec)

mysql> start slave;

Query OK, 0 rows affected (0.01 sec)

mysql> show slave status\G;

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

Slave_IO_State: Waiting for master to send event

Master_Host: 192.168.10.71

Master_User: repl_user

Master_Port: 3306

Connect_Retry: 60

Master_Log_File: master-bin.000002

Read_Master_Log_Pos: 334

Relay_Log_File: slave-relay-bin.000002

Relay_Log_Pos: 284

Relay_Master_Log_File: master-bin.000002

Slave_IO_Running:Yes

Slave_SQL_Running: Yes

Replicate_Do_DB:

Replicate_Ignore_DB:

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

Relay_Log_Space: 457

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

Master_UUID:0e9896a7-14f7-11e7-a0e6-000c2900551e

Master_Info_File: /usr/local/mysql-5.6.35/data/master.info

SQL_Delay: 0

SQL_Remaining_Delay: NULL

Slave_SQL_Running_State: Slave has read all relay log; waiting for theslave I/O thread to update it

Master_Retry_Count: 86400

Master_Bind:

Last_IO_Error_Timestamp:

Last_SQL_Error_Timestamp:

Master_SSL_Crl:

Master_SSL_Crlpath:

Retrieved_Gtid_Set:

Executed_Gtid_Set:

Auto_Position: 0

1 row in set (0.00 sec)

ERROR:

No query specified

mysql>

当红色部分出现两个yes之后,说明我们的主从配置正确,并且顺利启动。

我们可以通过使用show

processlist\G命令来查看master及slave上线程的状态:

mysql>show processlist\G;

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

Id: 2

User: root

Host: localhost

db: NULL

Command: Sleep

Time: 2644

State:

Info: NULL

*************************** 2. row***************************

Id: 5

User: repl_user

Host: 192.168.10.72:18886

db: NULL

Command: Binlog Dump

Time: 924

State: Master has sent all binlog to slave; waiting for binlog to beupdated

Info: NULL

*************************** 3. row***************************

Id: 6

User: root

Host: localhost

db: NULL

Command: Query

Time: 0

State: init

Info: showprocesslist

3 rows in set (0.00 sec)

ERROR:

No query specified

mysql>

红色部分为处理slave的I/O线程的连接

mysql>show processlist\G;

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

Id: 3

User: system user

Host:

db: NULL

Command: Connect

Time: 846

State: Waiting for master to send event

Info: NULL

*************************** 2. row***************************

Id: 4

User: system user

Host:

db: NULL

Command: Connect

Time: 846

State: Slave has read all relay log; waiting for the slave I/O thread toupdate it

Info: NULL

*************************** 3. row***************************

Id: 5

User: root

Host: localhost

db: NULL

Command: Query

Time: 0

State: init

Info: showprocesslist

3 rows in set (0.00 sec)

ERROR:

No query specified

红色部分为I/O线程的状态,蓝色部分为SQL线程的状态

    原文作者:温东
    原文地址: https://www.jianshu.com/p/70a1c244e5c3
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞