一、環境
master:192.168.124.51
MySQL版本:5.1.48-community-log
slave: 192.168.124.52
MySQL版本:5.1.48-community-log
二、主從數據庫
將主機上現有的數據庫備份,然後在從機上建立同名數據庫並還原。
(這次做的是51上的兩個數據庫database1和database2)
三、master和 slave上的相關配置
在/etc目錄下可能無my.cnf文件,從/user/share/MySQL目錄中拷貝my-medium.cnf 到/etc並修改成my.cnf (master和slave上一樣)。
如 # cp /user/share/MySQL/my-medium.cnf /etc/my.cnf
1.修改master上的配置文件my.cnf。
在[MySQLd]下添加如下字段:
server-id=1
log-bin=log
binlog-do-db=database1 //需要同步的數據庫
binlog-do-db=database2
binlog-ignore-db=MySQL //被忽略的數據庫
在master上位slave添加一個同步賬號
grant replication slave on *.* to 'AffairLog'@'192.168.124.52' identifIEd by 'passWord';
//在slave上登陸成功
重啟master的MySQL服務:
service MySQL restart;
用show master status命令查看日志情況
MySQL> show master status\G;
*************************** 1. row ***************************
File: log.000027
Position: 3151
Binlog_Do_DB: database1,database2
Binlog_Ignore_DB:
1 row in set (0.00 sec)
2.修改slave上的配置文件my.cnf。
在[MySQLd]下添加如下字段:
server-id=2
master-host=192.168.124.51
master-user= AffairLog
master-password= passWord
master-port=3306
master-connect-retry=60
replicate-do-db=database1 //同步的數據庫
replicate-do-db=database2
replicate-ignore-db=MySQL //被忽略的數據庫
重啟slave的MySQL服務:
service MySQL restart;
在進入slave機中的MySQL。
MySQL>start slave;
MySQL>show slave status\G;
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.124.51
Master_User: AffairLog
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: log.000027
Read_Master_Log_Pos: 3151
Relay_Log_File: localhost-relay-bin.000379
Relay_Log_Pos: 245
Relay_Master_Log_File: log.000027
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB: database1,database2
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: 3151
Relay_Log_Space: 543
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:
1 row in set (0.00 sec)
如果Slave_IO_Running、Slave_SQL_Running狀態為Yes則表明設置成功。
四、出現問題
Slave_IO_Running: No或者Slave_SQL_Running: No
1.停掉slave服務
MySQL> slave stop;
Query OK, 0 rows affected (2.01 sec)
2.解決辦法
解決辦法1
a.在master上查看。
MySQL> show master status\G;
*************************** 1. row ***************************
File: log.000027
Position: 3151
Binlog_Do_DB: database1,database2
Binlog_Ignore_DB:
1 row in set (0.00 sec)
b.到slave上手動同步。
MySQL>change master to
>master_host=’192.168.124.51’,
>master_user='AffairLog',
>master_password='passWord';
> master_log_file='log.000027',
> master_log_pos=3151,
Query OK, 0 rows affected (0.00 sec)
解決方法2
MySQL> slave stop;
MySQL> SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
MySQL> slave start;
3.啟動slave服務
MySQL> slave start;
4.再次查看Slave_IO_Running、Slave_SQL_Running狀態,為Yes則表明設置成功。
PS:
Slave_IO_Running:連接到主庫,並讀取主庫的日志到本地,生成本地日志文件
Slave_SQL_Running:讀取本地日志文件,並執行日志裡的SQL命令。