Keeplive期初是专门为LVS设计的,专门用来监控LVS集群系统中各个服务节点的状态,后来又加入VRRP的功能,因此除了配合LVS服务以外,也可以作为其他服务(nginx,haroxy)的高可用软件,VRRP是Virtual Router Redundancy Protocol(虚拟路由冗余协议)的缩写,VRRP出现的目的就是为了解决静态路由出现的单点故障问题,它能够保证网络的不间断,稳定的运行。所以keepalive一方面具有LVS cluster nodes healthchecks功能,另一方面也具有LVS directors failover
keepalived : 设置长连接处理的数量
proxy_http_version :设置长连接http版本为1.1
proxy_set_header :清除connection header 信息
upstream tomcats { 
    # server 192.168.1.173:8080 max_fails=2 fail_timeout=1s; 
    server 192.168.1.190:8080;
    # server 192.168.1.174:8080 weight=1; 
    # server 192.168.1.175:8080 weight=1; 
    keepalive 32; 
}
server {
    listen 80;
    server_name www.tomcats.com;
    location / { 
    proxy_pass http://tomcats; proxy_http_version 1.1; 
    proxy_set_header Connection ""; 
} 
}