运维--keepalived配置

1. centos设置允许绑定非本地ip

(1) 修改sysctl.conf文件

vim /etc/sysctl.conf
# 添加如下内容
net.ipv4.ip_nonlocal_bind = 1

(2) 上述配置立即生效

sudo sysctl -p

2. 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 192.168.200.1
   smtp_connect_timeout 30
   router_id LVS_DEVEL
   vrrp_skip_check_adv_addr
   vrrp_strict
   vrrp_garp_interval 0
   vrrp_gna_interval 0
}

vrrp_instance VI_1 {
    state MASTER    #配置主 、 从  master backup
    interface ens33  #查看自己主机真实ip
    virtual_router_id 51
    priority 100   #优先级
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
        192.168.189.181  #填写自己的虚拟ip
    }
}

virtual_server 192.168.189.181 80 {  #虚拟ip
    delay_loop 6
    lb_algo rr
    lb_kind DR   #DR模式
    net_mask 255.255.255.0 #网关
    protocol TCP

    real_server 192.168.189.137 80 {  #真实地址ip1
        weight 1
        TCP_CHECK {
            connect_port 80  # 端口
            connect_timeout 3
            nb_get_retry 3
            delay_before_retry 3
        }
    }
    real_server 192.168.189.138 80 {  #真实地址ip2
        weight 1
        TCP_CHECK {
            connect_port 80
            connect_timeout 3
            nb_get_retry 3
            delay_before_retry 3
        }
    }
} 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值