さくらのVPSでMariaDBのレプリケーション設定をしていきたいと思います。前提として下記の条件が整っているとします。
- DBサーバー1(Master):192.168.0.2
- DBサーバー2(Slave):192.168.0.3
- CentOS7
- MariaDB:mysql Ver 15.1 Distrib 5.5.47-MariaDB
DB2台のOS、MariaDBのバージョンは二つとも同じとします。
マスター側の設定
レプリケーションのユーザー設定
- レプリケーションユーザー:repl
- レプリケーションは192.168.0.0/24のネットワークからの許可
- レプリケーションユーザーのパスワードはpasswordとします
1 | MariaDB [(none)]> GRANT REPLICATION SLAVE ON *.* TO 'repl' @ '192.168.0.0/255.255.255.0' IDENTIFIED BY 'password' ; |
my.cnfに設定を追記
my.confに設定を追記します。ここで間違ってはいけないのは[mysqld]の下に追記します。[mysqld_safe]に追記すると失敗しますので気をつけてください。
03 | socket=/var/lib/mysql/mysql.sock |
04 | # Disabling symbolic-links is recommended to prevent assorted security risks |
06 | # Settings user and group are ignored when systemd is used. |
07 | # If you need to run mysqld under a different user or group, |
08 | # customize your systemd unit file for mariadb according to the |
09 | # instructions in http://fedoraproject.org/wiki/Systemd |
13 | log_bin=/var/ log /mariadb/binlog |
このようにします。
- log-bin でレプリケーションに必要なバイナリログを有効にします
- server-id はレプリケーションを構成するサーバー内で被らないように割り振ります
- expire_logs_days はバイナリログの保存日数です。レプリケーションに間が空いた時に復旧できるようにする期間を指定します
マスターのダンプ
マスター側のデータベースをダンプするため設定をします。
rootユーザーでDBにアクセス
03 | Welcome to the MariaDB monitor. Commands end with ; or \g. |
04 | Your MariaDB connection id is 2862 |
05 | Server version: 5.5.47-MariaDB- log MariaDB Server |
07 | Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. |
09 | Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. |
読み書きロックを行います
1 | MariaDB [(none)]> FLUSH TABLES WITH READ LOCK; |
2 | Query OK, 0 rows affected (0.00 sec) |
バイナリログのFileとPositionを確認します
2 | +---------------+----------+--------------+------------------+ |
3 | | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | |
4 | +---------------+----------+--------------+------------------+ |
5 | | binlog.000001 | 33424169 | | | |
6 | +---------------+----------+--------------+------------------+ |
mysqldump でマスターのDBをファイルに書き出します
1 | mysqldump -u root -p --all-databases --lock-all-tables > /tmp/dbdump.db |
読み書きロックを解除します
03 | Welcome to the MariaDB monitor. Commands end with ; or \g. |
04 | Your MariaDB connection id is 2862 |
05 | Server version: 5.5.47-MariaDB- log MariaDB Server |
07 | Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. |
09 | Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. |
11 | MariaDB [(none)]> UNLOCK TABLES; |
SCPでデータを送る
ダンプしたファイルをスレーブ側へ送ってあげます。
1 | [root@] # scp /tmp/dbdump.db root@192.168.0.3:/tmp/ |
MariaDBの再起動
1 | [root@] # systemctl restart mariadb |
再起動と転送できたらこれでマスター側の構築を終了します。次にスレーブ側の設定をします
スレーブ側の設定
スレーブ側は新しいターミナルを立ち上げても現在のマスターからsshでログインしてもどちらでも構いません
3 | root@192.168.20.3's password: |
mysql_install_db を実行
1 | [root@] # mysql_install_db --user=mysql |
my.cnfに設定を追加
my.cnfに設定を追加します。今回設定するのはサーバーIDとデータベースを読み込み専用にするためのものです。
03 | socket=/var/lib/mysql/mysql.sock |
04 | # Disabling symbolic-links is recommended to prevent assorted security risks |
06 | # Settings user and group are ignored when systemd is used. |
07 | # If you need to run mysqld under a different user or group, |
08 | # customize your systemd unit file for mariadb according to the |
09 | # instructions in http://fedoraproject.org/wiki/Systemd |
これも設定の記述する位置に注意が必要です。mysqld_safeに記述しないように注意が必要です。
- server-idはMySQLのホストを区別するための番号です。複数のスレーブを設置する場合、被らないように別々の数字を割り当ててください
- read_onlyはデーターベースを読み込み専用にするためのオプションです。スレーブに誤って更新クエリを行ってしまうとレプリケーションが止まってしまうため、それを防止する目的で設定します
MariaDBの再起動
スレーブ側のMariaDBが起動していた場合は再起動をしてください。もし起動していない場合は起動してください。
2 | [root@] # systemctl restart mariadb |
5 | [root@] # systemctl start mariadb |
となります。
マスターで書き出したデータベースの復元
1 | mysql --user=root > /tmp/dbdump.db |
rootのパスワードの変更
1 | mysqladmin -u root password 'password' |
passwordの所に新しいパスワードをいれてください。
スレーブDBの設定
03 | Welcome to the MariaDB monitor. Commands end with ; or \g. |
04 | Your MariaDB connection id is 2862 |
05 | Server version: 5.5.47-MariaDB- log MariaDB Server |
07 | Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. |
09 | Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. |
11 | MariaDB [(none)]> CHANGE MASTER TO MASTER_HOST= '192.168.0.2' , MASTER_PORT=3306, MASTER_USER= 'repl' , MASTER_PASSWORD= 'password' , MASTER_LOG_FILE= 'binlog.000001' , MASTER_LOG_POS=33424169; |
13 | Query OK, 0 rows affected (0.25 sec) |
スレーブをスタートします
1 | MariaDB [(none)]> START SLAVE; |
2 | Query OK, 0 rows affected, 1 warning (0.01 sec) |
状態の確認
レプリケーションが無事にできているか確認します。
マスター側
03 | Welcome to the MariaDB monitor. Commands end with ; or \g. |
04 | Your MariaDB connection id is 2862 |
05 | Server version: 5.5.47-MariaDB- log MariaDB Server |
07 | Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. |
09 | Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. |
10 | MariaDB [(none)]> SHOW MASTER STATUS; |
11 | +---------------+----------+--------------+------------------+ |
12 | | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | |
13 | +---------------+----------+--------------+------------------+ |
14 | | binlog.000001 | 55101492 | | | |
15 | +---------------+----------+--------------+------------------+ |
スレーブ側
03 | Welcome to the MariaDB monitor. Commands end with ; or \g. |
04 | Your MariaDB connection id is 2862 |
05 | Server version: 5.5.47-MariaDB- log MariaDB Server |
07 | Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. |
09 | Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. |
10 | MariaDB [(none)]> SHOW SLAVE STATUS\G |
11 | *************************** 1. row *************************** |
12 | Slave_IO_State: Waiting for master to send event |
13 | Master_Host: 192.168.0.2 |
17 | Master_Log_File: binlog.000001 |
18 | Read_Master_Log_Pos: 55101492 |
19 | Relay_Log_File: mariadb-relay-bin.000002 |
20 | Relay_Log_Pos: 55071500 |
21 | Relay_Master_Log_File: binlog.000001 |
23 | Slave_SQL_Running: Yes |
27 | Replicate_Ignore_Table: |
28 | Replicate_Wild_Do_Table: |
29 | Replicate_Wild_Ignore_Table: |
33 | Exec_Master_Log_Pos: 55101492 |
34 | Relay_Log_Space: 55071796 |
38 | Master_SSL_Allowed: No |
44 | Seconds_Behind_Master: 0 |
45 | Master_SSL_Verify_Server_Cert: No |
50 | Replicate_Ignore_Server_Ids: |
52 | 1 row in set (0.00 sec) |
- Slave_IO_RunningとSlave_SQL_RunningがYesになっていること
- Master_Log_File と Read_Master_Log_Pos がマスターで確認したFile、Positionと一致していること
一致していればレプリケーション成功です。
参考サイト
http://qiita.com/suzutsuki0220/items/e5be03ea8f44ad2f6533
個人支援・寄付について
サイトラボでは個人支援・寄付を受けております。ご協力いただける方はお願いいたします。当サイトではビットコインで受け付けております。
- ビットコイン:3LHnADwZwUbic2L45EnVJEykiG6KfbqrwS