MySQL 配置多主一從 ( 8.0.18 版本 )

罐裝麵包發表於2019-11-25

1. 現實背景

現有 4 臺主機,均能夠自動地採集資料,並存入其 MySQL 資料庫中,另有 1 臺專門用於處理資料的高配置主伺服器。這 5 臺機器經常不在同一個網段下,但希望,一旦處於同一個網段下時,4 臺用於採集資料的主機能夠自動地向主伺服器彙集資料,為此配置環境。

2. 約定

  • slave,主伺服器
  • master1, 用於採集資料的某一臺主機
  • master2, 用於採集資料的某一臺主機
  • master3, 用於採集資料的某一臺主機
  • master4, 用於採集資料的某一臺主機

3. 配置 master

3.1. 配置啟動引數

多臺 master 只需確保 server-id 不一致即可,其他根據自身需求配置。

[mysqld]
# 伺服器識別符號, 確保每臺伺服器識別符號都不一樣
server-id = 1000

# master 機必須開啟 log_bin
# mysql-bin 為自定義名字,會生成諸如 mysql-bin.index、mysql-bin.000001 等檔案
log_bin=mysql-bin

# 二進位制日誌過期時間(單位:天),預設值為 0,即不過期
expire_logs_days = 0

# 錯誤日誌
log-error=/var/lib/mysql/mysql-error.log

# 單個 log_bin 檔案最大值,達到最大值之後新建檔案字尾自增,如 mysql-bin.000002
max_binlog_size = 100M

# mysql 安裝路徑
basedir=/var/lib/mysql

# mysql 資料路徑
datadir=/var/lib/mysql

# master 記錄操作的資料庫
binlog_do_db=replication

# master 忽略的資料庫
binlog_ignore_db=information_schema
binlog_ignore_db=performance_schema
binlog_ignore_db=sys
binlog_ignore_db=mysql

# 二進位制日誌儲存模式
binlog_format=MIXED

# blob 型別的最大儲存值(單位:位元組、B)
# 1048576 B = 1MB
max_allowed_packet=1048576


# 密碼複雜度配置,需要外掛
# 密碼長度至少為 0
# validate_password_length=8

# 大小寫同時存在的最少數目
# validate_password_mixed_case_count=1

# 密碼至少存在的數字數目
# validate_password_number_count=1

# 密碼至少存在的特殊字元數目
# validate_password_special_char_count=1

innodb_flush_log_at_trx_commit=0


[mysql]
default-character-set=utf8mb4

[client]
default-character-set=utf8mb4

3.2. 重啟服務使引數生效

3.3. 以 root 身份登入,建立使用者,賦予密碼,授權,重新整理許可權

建立使用者 replication,同時賦予密碼:

create user 'replication'@'%' identified with mysql_native_password by 'JINGhuaSHUIyue123,.';

如果建立使用者失敗,可能已經存在使用者,不緊要的話可以刪除該使用者:

drop user 'replication'@'%';

如果不希望刪除重建使用者,只希望修改密碼:

alter user 'replication'@'%' identified with mysql_native_password by 'JINGhuaSHUIyue123,.';

賦予使用者 replication slave 許可權:

grant replication slave on *.* to 'replication'@'%';

保證 replication slave 許可權立即生效,重新整理許可權:

flush privileges;

 

4. 配置 slave 伺服器

4.1. 配置啟動引數

[mysqld]
# 伺服器識別符號, 確保每臺伺服器識別符號都不一樣
server-id = 2000

# mysql 安裝路徑
basedir=D:\mysql

# mysql 資料路徑
datadir=D:\mysql\data

# slave 複製的資料庫
replicate_do_db=test

# slave 忽略的資料庫
replicate_ignore_db=information_schema
replicate_ignore_db=performance_schema
replicate_ignore_db=mysql
replicate_ignore_db=sys

# slave 網路超時重連間隔(單位:秒)
slave_net_timeout=60

[mysql]

default-character-set=utf8

[client]

default-character-set=utf8

4.2. 重啟服務使引數生效

5. 配置多主一從

5.1. 檢視 master 狀態

以 root 身份登陸 master1,需要留意其中的 file、position:

show master status;
+------------------+----------+--------------+-------------------------------------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB                                | Executed_Gtid_Set |
+------------------+----------+--------------+-------------------------------------------------+-------------------+
| mysql-bin.000006 |      155 | test         | information_schema,performance_schema,sys,mysql |                   |
+------------------+----------+--------------+-------------------------------------------------+-------------------+

以 root 身份登陸 master1,需要留意其中的 file、position:

show master status;
+------------------+----------+--------------+-------------------------------------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB                                | Executed_Gtid_Set |
+------------------+----------+--------------+-------------------------------------------------+-------------------+
| mysql-bin.000005 |      155 | test         | information_schema,performance_schema,sys,mysql |                   |
+------------------+----------+--------------+-------------------------------------------------+-------------------+

說明:啟動 MySQL 會強制生成新的 log-bin,因此位置均為 155。

5.2. 配置 slave 與 master 的關聯

檢視是否有其他殘餘的配置:

show slave status\G;

停止 slave,清除殘餘配置:

stop slave;
reset slave all;

根據 master1 的 file,position 配置 replication 通道“master1”

change master to
master_host = '112.124.1.100',
master_user = 'replication',
master_port = 3306,
master_password = 'replication',
master_log_file = 'mysql-bin.000006',
master_log_pos = 155,
master_connect_retry = 15,
master_retry_count = 0
for channel 'master1';

根據 master2 的 file,position 配置 replication 通道“master2”

change master to
master_host = '192.168.1.139',
master_user = 'replication',
master_port = 3306,
master_password = 'JINGhuaSHUIyue123,.',
master_log_file = 'mysql-bin.000005',
master_log_pos = 155,
master_connect_retry = 15,
master_retry_count = 0
for channel 'master2';
  • master_connect_retry:連線失敗,重試間隔(單位:秒)

  • master_retry_count:連線失敗重試次數,0 為無限次

5.3. 準備表

啟動前,在三臺機器的資料庫中使用 DDL 語句定義好表結構,且表結構保持一致,確保主從複製前的一致性,否則會出錯!

5.4. 啟動 slave,檢視 slave 狀態

start slave for channel 'master1';
start slave for channel 'master2';
show slave status\G;

注意 Slave_IO_Running 和 Slave_Slave_Running 需要均顯示為 Yes,才表示成功,否則留意錯誤提示。

over

 

相關文章