ユーザ用ツール

サイト用ツール


サイドバー

このページの翻訳:



最近の更新



Tag Cloud

01_linux:01_net:09_heartbeat

09 Heartbeat

インストール

# yum install heartbeat

ノード1系(test1)

/etc/ha.d/ha.cf

※2系側のIPアドレスと、利用するインタフェース(bond0)を指定

logfile /var/log/ha-log
logfacility local0
keepalive 2
deadtime 30
initdead 120
udpport 694
ucast eth1 192.168.10.2
auto_failback off
node test1
node test2

/etc/ha.d/haresources

※host名と、VIPを指定

test1 IPaddr::192.168.10.10/24/eth1

/etc/ha.d/authkeys

# vi /etc/ha.d/authkeys 
auth 2
2 sha1 cluster-1

# chmod 600 /etc/ha.d/authkeys

/etc/hosts

以下追加

192.168.10.1       test1
192.168.10.2       test2

ノード2系(test2)

/etc/ha.d/ha.cf

※1系側のIPアドレスと、利用するインタフェース(eth1)を指定

logfile /var/log/ha-log
logfacility local0
keepalive 2
deadtime 30
initdead 120
udpport 694
ucast eth1 192.168.10.1
auto_failback off
node test1
node test2

/etc/ha.d/haresources

※host名と、VIPを指定

test2 IPaddr::192.168.10.10/24/eth1

/etc/ha.d/authkeys

# vi /etc/ha.d/authkeys 
auth 2
2 sha1 cluster-1

# chmod 600 /etc/ha.d/authkeys

/etc/hosts

以下追加

192.168.10.1       test1
192.168.10.2       test2
01_linux/01_net/09_heartbeat.txt · 最終更新: 2013/02/19 16:51 by matsui