Is this networking? Is this server? I figured networking works...
Anyway, I'm trying to get LVS up and running on CentOS 5.3 x86-64. Everything setup fine and went according to documentation here:
http://www.centos.org/docs/5/html/Vi...ion/index.html
Except when I actually go to start the pulse service, I get the following error:
Starting pulse: pulse: no active lvs services defined in /etc/sysconfig/ha/lvs.cf [FAILED]
This is my first adventure into using LVS for load balancing, so I'm not sure where to go next. For reference here is my lvs.conf:
Code:
serial_no = 26
primary = 192.168.16.210
primary_private = 10.3.0.1
service = lvs
backup_active = 0
backup = 192.168.16.247
backup_private = 10.3.0.2
heartbeat = 1
heartbeat_port = 539
keepalive = 6
deadtime = 18
network = nat
nat_router = 10.3.0.3 eth0:1
nat_nmask = 255.255.0.0
debug_level = NONE
monitor_links = 0
syncdaemon = 0
virtual www.testdomain.com {
active = 0
address = 192.168.16.221 eth1:1
vip_nmask = 255.255.255.0
port = 80
use_regex = 0
load_monitor = none
scheduler = wlc
protocol = tcp
timeout = 6
reentry = 15
quiesce_server = 0
server web1.prod.testdomain.com {
address = 10.3.1.1
active = 0
weight = 1
}
server web2.prod.testdomain.com {
address = 10.3.1.2
active = 0
weight = 1
}
}
Thoughts or opinions?
Thanks!