要求
操作系统 :CentOS 7
数据库版本:mysql5.6 或以上版本,本人使用的是 mysql5.7。
主机A:192.168.56.103 (Master)
主机B:192.168.56.101 (Slave)
之所以强调mysql
版本,是因为MySQL在5.6
之前和之后的安装方式是不一样的。
这里假定你已经在主机A
和主机B
安装好了mysql数据库
,如果不会的,可以参考 Linux mysql5.7 安装及配置。
Master的配置
在Linux环境下,主机A
的MySQL的配置文件的位置是在 /etc/my.cnf ,编辑:
[root@localhost ~]# vi /etc/my.cnf
在该文件下指定Master的配置如下:
log-bin=mysql-bin
server-id=2 # 用于标识唯一的数据库,这里设置为2,在设置从库的时候就需要设置为其他值。
binlog-ignore-db=information_schema # 表示同步的时候ignore的数据库
binlog-ignore-db=cluster # 表示同步的时候ignore的数据库
binlog-ignore-db=mysql # 表示同步的时候ignore的数据库
binlog-do-db=jffa # 指定需要同步的数据库
然后重启mysql服务,并进入mysql控制台:
[root@localhost ~]# service mysqld restart //重启mysql服务
[root@localhost ~]# mysql -uroot -p123456 //进入mysql控制台 root为用户名,123456为密码,这是我的密码,你写你的
赋予从库
权限帐号,允许用户在主库
上读取日志,赋予192.168.56.101
也就是Slave机器有File权限
,只赋予Slave机器有File权限还不行,还要给它REPLICATION SLAVE权限
才可以。
mysql> GRANT FILE ON *.* TO 'root'@'192.168.56.101' IDENTIFIED BY '123456';
mysql> GRANT REPLICATION SLAVE ON *.* TO 'root'@'192.168.56.101' IDENTIFIED BY '123456';
mysql> FLUSH PRIVILEGES;
再次重启mysql服务,登录后台查看主库信息:
[root@localhost ~]# service mysqld restart
[root@localhost ~]# mysql -uroot -p123456
mysql> show master status;
+------------------+----------+--------------+----------------------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+----------------------------------+-------------------+
| mysql-bin.000002 | 154 | jffa | information_schema,cluster,mysql | |
+------------------+----------+--------------+----------------------------------+-------------------+
1 row in set (0.00 sec)
这里的 File
、Position
是在配置Salve
的时候要使用到的,Binlog_Do_DB
表示要同步的数据库,Binlog_Ignore_DB
表示Ignore的数据库,这些都是在配置的时候进行指定的。
Slave的配置
同样需要编辑主机B的/etc/my.cnf
文件:
[root@localhost ~]# vi /etc/my.cnf
添加如下内容:
log-bin=mysql-bin
server-id=3
binlog-ignore-db=information_schema
binlog-ignore-db=cluster
binlog-ignore-db=mysql
replicate-do-db=jffa # 备份的数据库名称
replicate-ignore-db=mysql
log-slave-updates
slave-skip-errors=all
slave-net-timeout=60
重启服务,进入控制台配置一把:
[root@localhost ~]# service mysqld restart
[root@localhost ~]# mysql -uroot -p123456
mysql> stop slave; #关闭Slave
mysql> change master to master_host='192.168.56.103',master_user='root',master_password='123456',master_log_file='mysql-bin.000002', master_log_pos=154;
mysql> start slave; #开启Slave
在这里指定Master
的信息,master_log_file
是在配置Master的时候的File
选项, master_log_pos
是在配置Master的Position
选项,这里要进行对应。
通过show slave status \G;
查看配置信息:
mysql> show slave status \G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.56.103
Master_User: root
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000002
Read_Master_Log_Pos: 154
Relay_Log_File: localhost-relay-bin.000002
Relay_Log_Pos: 320
Relay_Master_Log_File: mysql-bin.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB: jffa
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: 154
Relay_Log_Space: 531
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: 2
Master_UUID: 1ad33afa-5261-11e8-a8b3-080027c4c4b3
Master_Info_File: /var/lib/mysql/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
可以看到,已经配置成功。
接下来,你可以在Master主机A
的数据库中新建数据库jffa
,Slave主机B的数据库
中也新建一个数据库jffa
。
再主机A上对数据库jffa
建表、删除表,对表的数据进行增删改查操作,Slave主机B的数据库
也会被同步。反之不可。读写分离,一个数据库只负责更新,一个数据库只负责查询。