搜索泥称 发表于 2018-12-31 11:28:57

LVS+Keepalived实现高可用集群 二

! Configuration File for keepalived
global_defs {
  notification_email {
  acassen@firewall.loc
  failover@firewall.loc
  sysadmin@firewall.loc
  }
  notification_email_from Alexandre.Cassen@firewall.loc
  smtp_server 127.0.0.1
  smtp_connect_timeout 30
  router_id LVS_DEVEL
  }
vrrp_instance VI_1 {
  state MASTER
  interface eth0
  virtual_router_id 51
  priority 100
  advert_int 1
  authentication {
  auth_type PASS
  auth_pass 1111
  }
  virtual_ipaddress {
  192.168.2.170
  }
  }
virtual_server 192.168.2.170 80 {
  delay_loop 6
  lb_algo wrr
  lb_kind DR
  persistence_timeout 60
  protocol TCP
  real_server 192.168.2.171 80 {
  weight 3
  TCP_CHECK {
  connect_timeout 10
  nb_get_retry 3
  delay_before_retry 3
  connect_port 80
  }
  }
    real_server 192.168.2.172 80 {
  weight 3
  TCP_CHECK {
  connect_timeout 10
  nb_get_retry 3
  delay_before_retry 3
  connect_port 80
      }
   }
}

页: [1]
查看完整版本: LVS+Keepalived实现高可用集群 二