HAProxy : レイヤー4モードでの負荷分散2019/08/06 |
レイヤー4モードでの負荷分散の設定です。
例として、2台の MariaDB バックエンドへ負荷分散するように設定します。 -----------+---------------------------+--------------------------+------------ | | | |10.0.0.30 |10.0.0.51 |10.0.0.52 +----------+-----------+ +-----------+----------+ +-----------+----------+ | [ dlp.srv.world ] | | [ node01.srv.world ] | | [ node02.srv.world ] | | HAProxy | | MariaDB Server#1 | | MariaDB Server#2 | +----------------------+ +----------------------+ +----------------------+ |
[1] | HAProxy の設定です。 |
root@dlp:~#
vi /etc/haproxy/haproxy.cfg # defaults セクションを以下のように変更 defaults
log global
mode tcp
timeout connect 5000
timeout client 50000
timeout server 50000
# frontend, backend に MariaDB サーバーを定義
frontend mysql-in
bind *:3306
default_backend backend_servers
backend backend_servers
balance roundrobin
server node01 10.0.0.51:3306 check
server node02 10.0.0.52:3306 check
systemctl restart haproxy |
[2] | 任意のクライアントから、HAProxy サーバー宛てに MariaDB サーバーへ接続し、正常に負荷分散されるか確認します。 設定通り、接続毎にラウンドロビンで負荷分散されれば OK です。 |
debian@client:~# mysql -u root -p -h 10.0.0.30 -e "show variables like 'hostname';" Enter password: +---------------+------------------+ | Variable_name | Value | +---------------+------------------+ | hostname | node02.srv.world | +---------------+------------------+debian@client:~# mysql -u root -p -h 10.0.0.30 -e "show variables like 'hostname';" Enter password: +---------------+------------------+ | Variable_name | Value | +---------------+------------------+ | hostname | node01.srv.world | +---------------+------------------+ |
Sponsored Link |