大量神秘的 keepalived 日志条目

问题描述

我有一个简单的 keepalived 设置,在我看来,它的功能似乎符合我的预期。 我遇到的问题是我收到了源源不断的晦涩日志条目:

Feb 10 21:43:51 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:43:53 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:43:55 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:43:57 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:43:59 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:44:01 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:44:03 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:44:06 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:44:08 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255
Feb 10 21:44:10 serverA Keepalived_vrrp[2599401]: (haproxy_lb) invalid TTL/HL. Received 254 and expect 255

关于这可能是什么/我如何避免被淹没的任何想法?

我的 serverA 和 serverB 配置文件是相同的,看起来像:

vrrp_track_file track_graceful_failover {
    file /etc/keepalived/graceful
}
vrrp_script chk_haproxy {
    script "/bin/sh -c '/bin/ps -e | /bin/grep haproxy'"
    interval 1
    timeout 3
    rise 2
    fall 2
}
global_defs {
   enable_script_security
   notification_email {
     root@mydomain.com
   }
   notification_email_from serverA@mydomain.com
   smtp_server smtphost.mydomain.com
   smtp_connect_timeout 60
}

vrrp_instance haproxy_lb {
    state MASTER
    interface eth0
    virtual_router_id 91
    priority 200
    advert_int 2
    authentication {
        auth_type PASS
        auth_pass 1215
    }
    virtual_ipaddress {
        10.1.9.3
    }
    track_file {
        track_graceful_failover weight 1
    }
    track_script {
        chk_haproxy
    }
}

谢谢

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...