I have LVS-DR on gentoo 2006.1, kernel 2.6.20.
Apache 2.0
I am running multiple ssl vhosts (ip-based) on each realserver.
The load balancer has two vips, 10.0.0.20(https site 1), and 10.0.0.24(https site 2)
I have two rip's on each realserver,
[192.168.1.20(https1) and 192.168.1.23(https2) (server1)]
[198.168.1.54(https1) and 192.168.1.24(https2) (server2)]
The vhost conf looks like this:
Server 1:
NameVirtualHost 192.168.1.20:443
<VirtualHost 192.168.1.20:443>
NameVirtualHost 192.168.1.23:443
<VirtualHost 192.168.1.23:443>
Server2:
NameVirtualHost 192.168.1.24:443
<VirtualHost 192.168.1.24:443>
NameVirtualHost 192.168.1.54:443
<VirtualHost 192.168.1.54:443>
However, if I go to the vip, via
https://10.0.0.20, I get an ssl error. What it appears like to me is that since apache is listening on 192.168.1.24, it can't respond to requests from the load balancer since it's not also listening on the vip. Is there a way to make it listen on the vip as well? What am I doing wrong?
Thanks,
Michael