CentOS 6
Sponsored Link

MariaDB Galera Cluster2016/08/08

 
MariaDB Galera Cluster の設定です。
クラスター設定ノード全てがマスターサーバーとなるマルチマスター構成となります。
[1] 設定するノード全てで Galera 用のパッケージをインストールします。
# SCLoからインストール

[root@www ~]#
yum --enablerepo=centos-sclo-rh -y install rh-mariadb101-mariadb-server-galera
# IPTables 有効の場合は以下を設定

[root@www ~]#
for port in 3306 4444 4567 4568
do
    iptables -I INPUT 5 -p tcp -m state --state NEW -m tcp --dport $port -j ACCEPT
done
[2] 1台目のノードを設定します。
[root@www ~]#
vi /etc/opt/rh/rh-mariadb101/my.cnf.d/mariadb-server.cnf
# 26行目: 以下のようにコメント解除&変更

[galera]
# Mandatory settings
wsrep_on=ON
wsrep_provider=
/opt/rh/rh-mariadb101/root/usr/lib64/galera/libgalera_smm.so

wsrep_cluster_address=
gcomm://

# 以下 コメント解除

binlog_format=row
default_storage_engine=InnoDB
innodb_autoinc_lock_mode=2
bind-address=0.0.0.0
# 以下 追記

# クラスター名

wsrep_cluster_name="MariaDB_Cluster"
# 自身のIPアドレス

wsrep_node_address="10.0.0.31"
# データ同期の方法

wsrep_sst_method=rsync
# 起動

[root@www ~]#
/opt/rh/rh-mariadb101/root/usr/bin/galera_new_cluster
# root パスワード設定等の基本設定を実施

[root@www ~]#
mysql_secure_installation

[3] 2台目以降のノードを設定します。
[root@node01 ~]#
vi /etc/opt/rh/rh-mariadb101/my.cnf.d/mariadb-server.cnf
# 19行目: 以下のようにコメント解除&変更

[galera]
# Mandatory settings
wsrep_on=ON
wsrep_provider=
/opt/rh/rh-mariadb101/root/usr/lib64/galera/libgalera_smm.so

# クラスタ参加ホストをカンマ区切りで指定

wsrep_cluster_address=
"gcomm://10.0.0.31,10.0.0.51"

# 以下 コメント解除

binlog_format=row
default_storage_engine=InnoDB
innodb_autoinc_lock_mode=2
bind-address=0.0.0.0
# 以下 追記

# クラスター名

wsrep_cluster_name="MariaDB_Cluster"
# 自身のIPアドレス

wsrep_node_address="10.0.0.51"
# データ同期の方法

wsrep_sst_method=rsync
[root@node01 ~]#
/etc/rc.d/init.d/rh-mariadb101-mariadb restart

[4] 以上で設定完了です。以下のようにステータスを確認し、「wsrep_local_state_comment」が「Synced」になっていれば OK です。 後は、クラスタ参加の各ノードからテストデータを挿入して正常に同期されるか確認してください。
[root@node01 ~]#
mysql -u root -p

Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 5
Server version: 10.1.14-MariaDB MariaDB Server

Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]>
show status like 'wsrep_%';

+------------------------------+---------------------------------------------------+
| Variable_name                | Value                                             |
+------------------------------+---------------------------------------------------+
| wsrep_apply_oooe             | 0.000000                                          |
| wsrep_apply_oool             | 0.000000                                          |
| wsrep_apply_window           | 0.000000                                          |
| wsrep_causal_reads           | 0                                                 |
| wsrep_cert_deps_distance     | 0.000000                                          |
| wsrep_cert_index_size        | 0                                                 |
| wsrep_cert_interval          | 0.000000                                          |
| wsrep_cluster_conf_id        | 2                                                 |
| wsrep_cluster_size           | 2                                                 |
| wsrep_cluster_state_uuid     | e567b444-5eaf-11e6-aa03-eff07208d628              |
| wsrep_cluster_status         | Primary                                           |
| wsrep_commit_oooe            | 0.000000                                          |
| wsrep_commit_oool            | 0.000000                                          |
| wsrep_commit_window          | 0.000000                                          |
| wsrep_connected              | ON                                                |
| wsrep_evs_delayed            |                                                   |
| wsrep_evs_evict_list         |                                                   |
| wsrep_evs_repl_latency       | 0.000455914/0.000544072/0.000694008/0.000106567/3 |
| wsrep_evs_state              | OPERATIONAL                                       |
| wsrep_flow_control_paused    | 0.000000                                          |
| wsrep_flow_control_paused_ns | 0                                                 |
| wsrep_flow_control_recv      | 0                                                 |
| wsrep_flow_control_sent      | 0                                                 |
| wsrep_gcomm_uuid             | 5be0abb7-5eb2-11e6-9e1f-376a9654ac1c              |
| wsrep_incoming_addresses     | 10.0.0.31:3306,10.0.0.51:3306                     |
| wsrep_last_committed         | 3                                                 |
| wsrep_local_bf_aborts        | 0                                                 |
| wsrep_local_cached_downto    | 18446744073709551615                              |
| wsrep_local_cert_failures    | 0                                                 |
| wsrep_local_commits          | 0                                                 |
| wsrep_local_index            | 1                                                 |
| wsrep_local_recv_queue       | 0                                                 |
| wsrep_local_recv_queue_avg   | 0.000000                                          |
| wsrep_local_recv_queue_max   | 1                                                 |
| wsrep_local_recv_queue_min   | 0                                                 |
| wsrep_local_replays          | 0                                                 |
| wsrep_local_send_queue       | 0                                                 |
| wsrep_local_send_queue_avg   | 0.500000                                          |
| wsrep_local_send_queue_max   | 2                                                 |
| wsrep_local_send_queue_min   | 0                                                 |
| wsrep_local_state            | 4                                                 |
| wsrep_local_state_comment    | Synced                                            |
| wsrep_local_state_uuid       | e567b444-5eaf-11e6-aa03-eff07208d628              |
| wsrep_protocol_version       | 7                                                 |
| wsrep_provider_name          | Galera                                            |
| wsrep_provider_vendor        | Codership Oy <info@codership.com>                 |
| wsrep_provider_version       | 3.12(r9921e73)                                    |
| wsrep_ready                  | ON                                                |
| wsrep_received               | 2                                                 |
| wsrep_received_bytes         | 194                                               |
| wsrep_repl_data_bytes        | 0                                                 |
| wsrep_repl_keys              | 0                                                 |
| wsrep_repl_keys_bytes        | 0                                                 |
| wsrep_repl_other_bytes       | 0                                                 |
| wsrep_replicated             | 0                                                 |
| wsrep_replicated_bytes       | 0                                                 |
| wsrep_thread_count           | 2                                                 |
+------------------------------+---------------------------------------------------+
57 rows in set (0.00 sec)
関連コンテンツ