Windows下搭建mysql分散式主從資料庫
WINDOWS下Mysql搭建主從伺服器
目錄
[要求]
- 資料庫要求版本一致
- mysql5.5以上版本
在my.ini 檔案中找到[mysqld]
(如果沒有my.ini 請自行建立檔案或將my_default.ini 重新命名為 my.ini)
[主庫配置]
### 主庫配置 #給伺服器取一個獨特的ID server-id=1 #申明二進位制日誌的檔案為mysql-bin.xxxx log-bin=mysql-bin #二進位制檔案型別 mixed 混合 statement 記錄執行語句 row 記錄磁碟變化 binlog-format=mixed
並重啟mysql 服務
net stop mysql
net start mysql
確認主庫的server-id,在主庫執行
SHOW VARIABLES LIKE 'server_id';
mysql> SHOW VARIABLES LIKE 'server_id';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| server_id | 1 |
+---------------+-------+
1 row in set (0.00 sec)
繼續執行如下程式碼,檢視同步庫的狀態
show master status;
mysql> show master status; +------------------+----------+--------------+------------------+-------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set | +------------------+----------+--------------+------------------+-------------------+ | mysql-bin.000001 | 2235 | test | mysql | | +------------------+----------+--------------+------------------+-------------------+ 1 row in set (0.00 sec)
注意:
每次修改主伺服器my.ini File引數和Position 都會改變,從伺服器可能需要重新配置,具體參考後面。
[為從庫建立賬戶]
執行如下程式碼:
GRANT REPLICATION CLIENT,REPLICATION SLAVE ON *.* TO [email protected]'192.168.1.102' IDENTIFIED BY 'password';
mysql> GRANT REPLICATION CLIENT,REPLICATION SLAVE ON *.* TO [email protected]'192.168.1.102' IDENTIFIED BY 'password';
Query OK, 0 rows affected (0.00 sec)
注意:
user為使用者名稱,192.168.1.102為從庫IP,多個從伺服器為安全起見,請增加多個!也可配置為132.168.1.% 區域網內均可連線
password 為密碼;配置完成請校驗從伺服器是否可以連線主伺服器。
執行如下程式碼:
use mysql;
select host,user,password from user;
mysql> select host,user,password from user;
+----------------+-------+-------------------------------------------+
| host | user | password |
+----------------+-------+-------------------------------------------+
| % | root | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
| 127.0.0.1 | root | |
| ::1 | root | |
| localhost | | |
| 192.168.1.102 | user | *1B44DF3B7924252ED1F3CF2DAB1CD12E06EB47DD |
+----------------+-------+-------------------------------------------+
7 rows in set (0.00 sec)
至此!主庫配置完成!!!
呱唧呱唧!!!
[從伺服器配置]
my.ini 新增如下程式碼:
### 從庫配置
#給伺服器取一個獨特的ID
server-id=2
#申明二進位制日誌的檔案為mysql-bin.xxxx
log-bin=mysql-bin
#開啟從伺服器的relay日誌
relay-log=mysql-relay
#二進位制檔案型別 mixed 混合 statement 記錄執行語句 row 記錄磁碟變化
binlog-format=mixed
並重啟mysql 服務
net stop mysql
net start mysql
[修改同步使用者資料]
停止從庫的slave,方便進一步修改
stop slave;
在從庫執行如下程式碼:
CHANGE MASTER TO MASTER_HOST='192.168.1.101', #主伺服器IP
MASTER_PORT=3306, #主伺服器埠
MASTER_USER='user1', #主伺服器使用者名稱
MASTER_PASSWORD='userpwd', #主伺服器使用者密碼
MASTER_LOG_FILE='mysql-bin.000001', #日誌檔名,獲取方法往下看
MASTER_LOG_POS=2235; #也從下面的方法獲取
[獲取上面配置的資料]
在主庫上執行如下程式碼:
show master status;
mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 | 2235 | test | mysql | |
+------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)
所以,看清楚了吧,為什麼剛開始特別說修改my.ini File和Position的值會變,因為這兒要用得到啊。不然會出一些問題~
File的值就是MASTER_LOG_FILE的值,Position的值就是MASTER_LOG_POS的值。
複製執行就好了。
輸入如下程式碼,啟動SLAVE程序:
start slave;
檢查是否可以打通
執行如下程式碼:
show slave status\G
末尾不加分號
如果你是sqlyog或者其他的圖形介面的話也可以執行如下程式碼:
show slave status;
mysql> show slave status\G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: 192.168.1.102 Master_User: user Master_Port: 3306 Connect_Retry: 60 Master_Log_File: mysql-bin.000001 Read_Master_Log_Pos: 2440 Relay_Log_File: WIN-27C9C1NUFHU-relay-bin.000003 Relay_Log_Pos: 1960 Relay_Master_Log_File: mysql-bin.000001 Slave_IO_Running: Yes ////////重點看這裡,必須兩個都是Yes Slave_SQL_Running: Yes ////////重點看這裡,必須兩個都是Yes Replicate_Do_DB: test 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: 2440 Relay_Log_Space: 2949 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: 683c15c0-b656-11e8-8284-00259030014d Master_Info_File: D:\mysql-5.6.32-winx64\data\master.info SQL_Delay: 0 SQL_Remaining_Delay: NULL Slave_SQL_Running_State: Slave has read all relay log; waiting for the sla ve 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)
提示:
同一臺window伺服器不能設定多個mysql從庫,會造成 Slave_IO_Running 互相踢下去的情況。
同一臺伺服器設定一主一從雖然不會互踢程序,但實測仍無法完成同步。
[排錯]
如果Slave_IO_Running不是Yes
請檢查 MASTER_LOG_FILE 的值是否正確,就是上面強調的那個修改ini會改變的那兩個傢伙。
如果Slave_SQL_Running不是Yes
執行如下程式碼,記住,要分別一條一條執行。
mysql> stop slave;
mysql> set GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
mysql> start slave;
可能執行一次沒反應,多執行幾次看看。
直到Slave_IO_Running Slave_SQL_Running 的值都為Yes,說明同步配置完成。
如果Slave_IO_Running一直為連線中,請檢查賬號是否具有許可權或防火牆埠是否放開
[檢驗]
在主庫上建立個表,寫點資料,看看從庫上有沒有。
此時,資料庫已經自己同步了。
搞定了!
:)
如果沒有的話,就自己百度吧。
以上為非同步mysql叢集搭建過程,但在操作事務時候容易造成事務丟失。所以在mysql5.5引入了版同步複製來解決問題。
半同步複製參考如下:
半同步複製
首先判斷MySQL伺服器是否支援動態增加外掛
執行如下程式碼
select @@have_dynamic_loading;
mysql> select @@have_dynamic_loading;
+------------------------+
| @@have_dynamic_loading |
+------------------------+
| YES |
+------------------------+
1 row in set (0.00 sec)
確認mysql安裝目錄下面是否有下面兩個檔案
/lib/plugin/semisync_master.dll
/lib/plugin/semisync_slave.dll
在主庫上執行如下程式碼
install plugin rpl_semi_sync_master SONAME 'semisync_master.dll';
mysql> install plugin rpl_semi_sync_master SONAME 'semisync_master.dll';
Query OK, 0 rows affected (0.04 sec)
在從庫上執行如下程式碼
install plugin rpl_semi_sync_slave SONAME 'semisync_slave.dll';
mysql> install plugin rpl_semi_sync_slave SONAME 'semisync_slave.dll';
Query OK, 0 rows affected (0.03 sec)
檢查安裝狀態
mysql> select * from mysql.plugin;
+---------------------+--------------------+
| name | dl |
+---------------------+--------------------+
| rpl_semi_sync_slave | semisync_slave.dll |
+---------------------+--------------------+
1 row in set (0.04 sec)
在主庫和從庫上配置引數開啟半同步semi-sync
主庫:
mysql> set global rpl_semi_sync_master_enabled=1;
Query OK, 0 rows affected (0.04 sec)
mysql> set global rpl_semi_sync_master_timeout=30000;
Query OK, 0 rows affected (0.04 sec)
從庫
mysql> set global rpl_semi_sync_slave_enabled=1;
Query OK, 0 rows affected (0.04 sec)
重啟I/O執行緒
mysql> STOP SLAVE IO_THREAD;
Query OK, 0 rows affected (0.05 sec)
mysql> START SLAVE IO_THREAD;
Query OK, 0 rows affected (0.04 sec)
配置完成了,再給自己打個氣吧~
:)
宕機處理
從庫宕機後,首先重啟從庫
#### 獲取到File值和Position的值
```mysql
#暫停主庫資料更新操作
#注意!!!此操作會阻塞著資料庫的所有更新操作
FLUSH TABLES WITH READ LOCK;
#SHOW出日誌名和偏移量
SHOW MASTER STATUS;
#強制從庫進行同步
select MASTER_POS_WAIT('mysql-bin.000001','974');
#釋放主庫
UNLOCK TABLES;
參考資料
[1] 唐漢明,翟振興.《深入淺出MySQL:資料庫開發、優化與管理維護(第二版)》[M].北京:人民郵電出版社,2014:536-560