mysql版本:5.7.12
主:kry132 192.168.0.132
从:kry135 192.168.0.135
一.主从服务器mysql安装
http://note.youdao.com/yws/public/redirect/share?id=fb66c11f62e5507cc14871b3824130c1&type=false
二.配置主数据库
1.保证主从数据一致
说明:在配置主从数据库时,首先要保证主从数据库一致,将discuz库导入dbtest中用于做测试。
创建数据库:
[root@kry132 ~]# mysql -uroot -p
mysql> create database dbtest;
主数据库备份:
[root@kry132 ~]# mysqldump -uroot -p discuz >disuz.sql
将discuz数据库还原到dbtest用于测试:
[root@kry132 ~]# mysql -uroot -p dbtest < disuz.sql
将测试数据库传送给从:
[root@kry132 ~]# scp disuz.sql root@192.168.0.135:/root
从创建数据库:
[root@Kry135 ~]# mysql -uroot -p
mysql> create database dbtest;
导入测试数据:
[root@Kry135 ~]# mysql -uroot -p dbtest < disuz.sql
扩展内容:
无需登陆mysql,直接创建库,导数据
[root@Kry135 ~]# mysql -uroot -p -e "create database dbtest"
[root@Kry135 ~]# mysql -uroot -p dbtest < disuz.sql
2.主数据库配置
编辑配置文件:
[root@kry132 ~]# vim /etc/my.cnf
添加以下内容:
扩展内容:
binlog-do-db=db1,db2 #表示只针对db1和db2的数据库做主从。
binlog-ignore-db=db1,db2 #表示除db1和db2不同步,其他都被同步,类似黑名单。
重启mysql服务:
[root@kry132 ~]# service mysqld restart
查看binlog:
ls 配置文件中定义datadir,在过滤以下定义的log-bin的值
[root@kry132 ~]# ls /data/mysql |grep kry
kry.000001
kry.index
3.授权
说明:需要专门用于传输的用户
登录数据库:
[root@kry132 ~]# mysql -uroot -p
授权rand用户,密码为123123:
mysql> grant replication slave on *.* to 'rand'@'192.168.0.135' identified by '123123';
刷新权限:
mysql> flush privileges;
表读锁死:
mysql> flush tables with read lock;
读取值:
mysql> show master status; #用于从
+------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------+----------+--------------+------------------+-------------------+
| kry.000001 | 601 | dbtest | | |
+------------+----------+--------------+------------------+-------------------+
1 row in set (0.02 sec)
三.配置从数据库
1.编辑配置文件
[root@Kry135 ~]# vim /etc/my.cnf
添加以下内容:
扩展内容:
replicate-do-db=db1,db2 #只复制db1和db2库,但是如果主库早起哦他的schema环境下操作,其binlog不会被从库应用,从而出现异常。
replicate-ignore-db=db1,db2 #不复制db1和db2库。
2.配置数据
停止slave:
mysql> stop slave; #5.7之前版本是slave stop;
配置链接:
mysql> change master to master_host='192.168.0.132',master_port=3306,master_user='rand',master_password='123123',master_log_file='kry.000001',master_log_pos=601;
注意:master_log_file和master_log_pos就是主数据库中 show master status查询出来的File和Position
启动slave:
mysql> start slave;
3.查看slave看是否配置成功
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.0.132
Master_User: rand
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: kry.000001
Read_Master_Log_Pos: 601
Relay_Log_File: Kry135-relay-bin.000003
Relay_Log_Pos: 314
Relay_Master_Log_File: kry.000001
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: 601
Relay_Log_Space: 522
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
Master_UUID: 20925176-37ab-11e6-8399-000c298884e5
Master_Info_File: /data/mysqldata/master.info
SQL_Delay: 0
SQL_Remaining_Delay: NULL
Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
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
Replicate_Rewrite_DB:
Channel_Name:
Master_TLS_Version:
1 row in set (0.00 sec)
ERROR:
No query specified
注意:查看配置是否成功主要看以下参数
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
如果不是yes,请查看 Last_IO_Error和 Last_SQL_Error
四.错误信息
1.Last_IO_Error: error connecting to master 'rand@192.168.0.132:3306' - retry-time: 60 retries: 1
该错误信息说明3306端口不通,检查防火墙配置。
2.Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file'
该错误说明指定的master_log_file与主配置文件datadir目录中以log-bin定义值开头的文件名不一致。
五.测试主从同步
1.主数据库解锁读
[root@kry132 ~]# mysql -uroot -p
mysql> unlock tables ;
2.测试同步
主:
mysql> use dbtest;
mysql> show tables;
+-----------------------------------+
| Tables_in_dbtest |
+-----------------------------------+
| pre_common_admincp_cmenu |
| pre_common_admincp_group |
| pre_common_admincp_member |
mysql> drop tables pre_common_admincp_cmenu ;
Query OK, 0 rows affected (0.03 sec)
从:
[root@Kry135 ~]# mysql -uroot -p
mysql> use dbtest;
mysql> show tables ;
+-----------------------------------+
| Tables_in_dbtest |
+-----------------------------------+
| pre_common_admincp_group |
| pre_common_admincp_member |
3.需要注意事项
①.不能在从上面同步的数据进行任何操作
②.主从同步很容易断开,需要监控Slave_IO_Running、Slave_SQL_Running、Last_IO_Error、Last_SQL_Error
主:kry132 192.168.0.132
从:kry135 192.168.0.135
一.主从服务器mysql安装
http://note.youdao.com/yws/public/redirect/share?id=fb66c11f62e5507cc14871b3824130c1&type=false
二.配置主数据库
1.保证主从数据一致
说明:在配置主从数据库时,首先要保证主从数据库一致,将discuz库导入dbtest中用于做测试。
创建数据库:
[root@kry132 ~]# mysql -uroot -p
mysql> create database dbtest;
主数据库备份:
[root@kry132 ~]# mysqldump -uroot -p discuz >disuz.sql
将discuz数据库还原到dbtest用于测试:
[root@kry132 ~]# mysql -uroot -p dbtest < disuz.sql
将测试数据库传送给从:
[root@kry132 ~]# scp disuz.sql root@192.168.0.135:/root
从创建数据库:
[root@Kry135 ~]# mysql -uroot -p
mysql> create database dbtest;
导入测试数据:
[root@Kry135 ~]# mysql -uroot -p dbtest < disuz.sql
扩展内容:
无需登陆mysql,直接创建库,导数据
[root@Kry135 ~]# mysql -uroot -p -e "create database dbtest"
[root@Kry135 ~]# mysql -uroot -p dbtest < disuz.sql
2.主数据库配置
编辑配置文件:
[root@kry132 ~]# vim /etc/my.cnf
添加以下内容:
server_id = 1 #1可以自定义,保证主从不一致 log-bin=kry #定义binlog的,kry可以自定义 binlog-do-db=dbtest #只同步dbtest库,可以不用定义 |
binlog-do-db=db1,db2 #表示只针对db1和db2的数据库做主从。
binlog-ignore-db=db1,db2 #表示除db1和db2不同步,其他都被同步,类似黑名单。
重启mysql服务:
[root@kry132 ~]# service mysqld restart
查看binlog:
ls 配置文件中定义datadir,在过滤以下定义的log-bin的值
[root@kry132 ~]# ls /data/mysql |grep kry
kry.000001
kry.index
3.授权
说明:需要专门用于传输的用户
登录数据库:
[root@kry132 ~]# mysql -uroot -p
授权rand用户,密码为123123:
mysql> grant replication slave on *.* to 'rand'@'192.168.0.135' identified by '123123';
刷新权限:
mysql> flush privileges;
表读锁死:
mysql> flush tables with read lock;
读取值:
mysql> show master status; #用于从
+------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------+----------+--------------+------------------+-------------------+
| kry.000001 | 601 | dbtest | | |
+------------+----------+--------------+------------------+-------------------+
1 row in set (0.02 sec)
三.配置从数据库
1.编辑配置文件
[root@Kry135 ~]# vim /etc/my.cnf
添加以下内容:
server_id = 12 |
扩展内容:
replicate-do-db=db1,db2 #只复制db1和db2库,但是如果主库早起哦他的schema环境下操作,其binlog不会被从库应用,从而出现异常。
replicate-ignore-db=db1,db2 #不复制db1和db2库。
2.配置数据
停止slave:
mysql> stop slave; #5.7之前版本是slave stop;
配置链接:
mysql> change master to master_host='192.168.0.132',master_port=3306,master_user='rand',master_password='123123',master_log_file='kry.000001',master_log_pos=601;
注意:master_log_file和master_log_pos就是主数据库中 show master status查询出来的File和Position
启动slave:
mysql> start slave;
3.查看slave看是否配置成功
mysql> show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.0.132
Master_User: rand
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: kry.000001
Read_Master_Log_Pos: 601
Relay_Log_File: Kry135-relay-bin.000003
Relay_Log_Pos: 314
Relay_Master_Log_File: kry.000001
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: 601
Relay_Log_Space: 522
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
Master_UUID: 20925176-37ab-11e6-8399-000c298884e5
Master_Info_File: /data/mysqldata/master.info
SQL_Delay: 0
SQL_Remaining_Delay: NULL
Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates
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
Replicate_Rewrite_DB:
Channel_Name:
Master_TLS_Version:
1 row in set (0.00 sec)
ERROR:
No query specified
注意:查看配置是否成功主要看以下参数
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
如果不是yes,请查看 Last_IO_Error和 Last_SQL_Error
四.错误信息
1.Last_IO_Error: error connecting to master 'rand@192.168.0.132:3306' - retry-time: 60 retries: 1
该错误信息说明3306端口不通,检查防火墙配置。
2.Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Could not find first log file name in binary log index file'
该错误说明指定的master_log_file与主配置文件datadir目录中以log-bin定义值开头的文件名不一致。
五.测试主从同步
1.主数据库解锁读
[root@kry132 ~]# mysql -uroot -p
mysql> unlock tables ;
2.测试同步
主:
mysql> use dbtest;
mysql> show tables;
+-----------------------------------+
| Tables_in_dbtest |
+-----------------------------------+
| pre_common_admincp_cmenu |
| pre_common_admincp_group |
| pre_common_admincp_member |
mysql> drop tables pre_common_admincp_cmenu ;
Query OK, 0 rows affected (0.03 sec)
从:
[root@Kry135 ~]# mysql -uroot -p
mysql> use dbtest;
mysql> show tables ;
+-----------------------------------+
| Tables_in_dbtest |
+-----------------------------------+
| pre_common_admincp_group |
| pre_common_admincp_member |
3.需要注意事项
①.不能在从上面同步的数据进行任何操作
②.主从同步很容易断开,需要监控Slave_IO_Running、Slave_SQL_Running、Last_IO_Error、Last_SQL_Error
编辑回复