免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2845 | 回复: 0
打印 上一主题 下一主题

Keepalived 主从主机错位问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-11-09 13:57 |只看该作者 |倒序浏览
本帖最后由 bjbs_270 于 2011-11-09 13:59 编辑

配置keepalived 实现双机执备,发现整到最后,主和备正好错位,但可用,有些搞不明白,贴出配置请大家帮忙看一下,多谢了

主机配置

  1. ! Configuration File for keepalived

  2. global_defs {
  3.    notification_email {
  4.         admin@139.com
  5.    }
  6.    notification_email_from admin@atime-cn.com
  7.    smtp_server 127.0.0.1
  8.    smtp_connect_timeout 30
  9.    router_id LVS_DEVEL
  10. }

  11. vrrp_instance VI_1 {
  12.     state MASTER# 备用机设置state BACKUP
  13.     interface eth0
  14.     virtual_router_id 51
  15.     priority 101
  16.     advert_int 1
  17.     authentication {
  18.         auth_type PASS
  19.         auth_pass 1111
  20.     }
  21.     virtual_ipaddress {
  22.         192.168.1.250
  23.     }
  24. }

  25. virtual_server 192.168.1.250 443 {
  26.     delay_loop 6
  27.     lb_algo rr
  28.     lb_kind NAT
  29.     nat_mask 255.255.255.0
  30.     persistence_timeout 50
  31.     protocol TCP

  32.     real_server 192.168.1.253 443 {
  33.         weight  5
  34.             TCP_CHECK {
  35.             connect_timeout 10
  36.             nb_get_retry 3
  37.             delay_before_retry 3
  38.             connect_port 443
  39.         }
  40.     }

  41.     real_server 192.168.1.252 443 {
  42.         weight  5
  43.             TCP_CHECK {
  44.             connect_timeout 10
  45.             nb_get_retry 3
  46.             delay_before_retry 3
  47.             connect_port 443
  48.         }
  49.     }
  50. }
复制代码
备机配置

  1. ! Configuration File for keepalived

  2. global_defs {
  3.    notification_email {
  4.         admin@139.com
  5.    }
  6.    notification_email_from admin@atime-cn.com
  7.    smtp_server 127.0.0.1
  8.    smtp_connect_timeout 30
  9.    router_id LVS_DEVEL
  10. }

  11. vrrp_instance VI_1 {   
  12.     state BACKUP
  13.     interface eth0
  14.     virtual_router_id 51
  15.     priority 100
  16.     advert_int 1

  17.     authentication {
  18.         auth_type PASS
  19.         auth_pass 1111
  20.     }
  21.     virtual_ipaddress {
  22.         192.168.1.250
  23.     }
  24. }

  25. virtual_server 192.168.1.250 443 {
  26.     delay_loop 6
  27.     lb_algo rr
  28.     lb_kind NAT
  29.     nat_mask 255.255.255.0
  30.     persistence_timeout 50
  31.     protocol TCP

  32.     real_server 192.168.1.253 443 {
  33.         weight  5
  34.             TCP_CHECK {
  35.             connect_timeout 10
  36.             nb_get_retry 3
  37.             delay_before_retry 3
  38.             connect_port 443
  39.         }
  40.     }

  41.     real_server 192.168.1.252 443 {
  42.         weight  5
  43.             TCP_CHECK {
  44.             connect_timeout 10
  45.             nb_get_retry 3
  46.             delay_before_retry 3
  47.             connect_port 443
  48.         }
  49.     }
  50. }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP