keepalived无法调用track_script里的脚本,绑定VIP失败

littleboybin 2015-10-17 03:53:01

配置文件内容
[root@localhost ~]# more /etc/keepalived/keepalived.conf
! Configuration File for keepalived
! extra script call demonstration
! scripts are supported in Instance and groups
! declarations.
global_defs {
router_id localhost
}
vrrp_script check_run{
script "/opt/test.sh"
interval 5
}
vrrp_sync_group G1 {
group {
VI_1
}
}

vrrp_instance VI_1 {
state MASTER
interface eth0
virtual_router_id 51
priority 90
advert_int 1
authentication {
auth_type PASS
auth_pass admin123
}
track_script{
check_run
}
virtual_ipaddress {
192.168.0.115
}
}

脚本很简单
[root@localhost opt]# ./test.sh
hello

查看日志,无法绑定VIP
Oct 12 10:34:47 localhost Keepalived[1738]: Starting Keepalived v1.2.19 (10/12,2015)
Oct 12 10:34:47 localhost Keepalived[1739]: Starting Healthcheck child process, pid=1741
Oct 12 10:34:47 localhost Keepalived[1739]: Starting VRRP child process, pid=1742
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: Netlink reflector reports IP 192.168.0.101 added
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: Netlink reflector reports IP fe80::20c:29ff:fe9d:fbb7 added
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: Registering Kernel netlink reflector
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: Registering Kernel netlink command channel
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: Registering gratuitous ARP shared channel
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: Opening file '/etc/keepalived/keepalived.conf'.
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: Configuration is using : 67259 Bytes
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: Using LinkWatch kernel netlink reflector...
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: VRRP_Instance(VI_1) Entering BACKUP STATE
Oct 12 10:34:47 localhost Keepalived_vrrp[1742]: VRRP sockpool: [ifindex(2), proto(112), unicast(0), fd(10,11)]
Oct 12 10:34:47 localhost Keepalived_healthcheckers[1741]: Netlink reflector reports IP 192.168.0.101 added
Oct 12 10:34:47 localhost Keepalived_healthcheckers[1741]: Netlink reflector reports IP fe80::20c:29ff:fe9d:fbb7 added
Oct 12 10:34:47 localhost Keepalived_healthcheckers[1741]: Registering Kernel netlink reflector
Oct 12 10:34:47 localhost Keepalived_healthcheckers[1741]: Registering Kernel netlink command channel
Oct 12 10:34:47 localhost Keepalived_healthcheckers[1741]: Opening file '/etc/keepalived/keepalived.conf'.
Oct 12 10:34:47 localhost Keepalived_healthcheckers[1741]: Configuration is using : 9882 Bytes
Oct 12 10:34:47 localhost kernel: IPVS: Registered protocols (TCP, UDP, SCTP, AH, ESP)
Oct 12 10:34:47 localhost kernel: IPVS: Connection hash table configured (size=4096, memory=64Kbytes)
Oct 12 10:34:47 localhost kernel: IPVS: ipvs loaded.
Oct 12 10:34:47 localhost Keepalived_healthcheckers[1741]: Using LinkWatch kernel netlink reflector...
Oct 12 10:34:50 localhost Keepalived_vrrp[1742]: VRRP_Instance(VI_1) Transition to MASTER STATE
Oct 12 10:34:50 localhost Keepalived_vrrp[1742]: VRRP_Group(G1) Syncing instances to MASTER state
Oct 12 10:34:51 localhost Keepalived_vrrp[1742]: VRRP_Instance(VI_1) Entering MASTER STATE

但是如果将keepalived.conf 中的
track_script{
check_run
}
这三行注释掉,又能绑定VIP。查看日志如下:
[root@localhost opt]# vi /etc/keepalived/keepalived.conf
! Configuration File for keepalived
! extra script call demonstration
! scripts are supported in Instance and groups
! declarations.
global_defs {
router_id localhost
}
vrrp_script check_run{
script "/opt/test.sh"
interval 5
}
vrrp_sync_group G1 {
group {
VI_1
}
}

vrrp_instance VI_1 {
state BACKUP
interface eth0
virtual_router_id 51
priority 90
advert_int 1
authentication {
auth_type PASS
auth_pass admin123
}
# track_script{
# check_run
# }
virtual_ipaddress {
192.168.0.115
}
}

"/etc/keepalived/keepalived.conf" 36L, 572C written
[root@localhost opt]# service keepalived restart
停止 keepalived: [确定]
正在启动 keepalived: [确定]
[root@localhost opt]# tail -30 /var/log/messages
Oct 12 10:34:51 localhost Keepalived_vrrp[1742]: VRRP_Instance(VI_1) Entering MASTER STATE
Oct 12 10:38:57 localhost Keepalived[1739]: Stopping Keepalived v1.2.19 (10/12,2015)
Oct 12 10:38:57 localhost Keepalived_vrrp[1742]: VRRP_Instance(VI_1) sending 0 priority
Oct 12 10:38:58 localhost Keepalived[1787]: Starting Keepalived v1.2.19 (10/12,2015)
Oct 12 10:38:58 localhost Keepalived[1788]: Starting Healthcheck child process, pid=1790
Oct 12 10:38:58 localhost Keepalived[1788]: Starting VRRP child process, pid=1791
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: Netlink reflector reports IP 192.168.0.101 added
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: Netlink reflector reports IP fe80::20c:29ff:fe9d:fbb7 added
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: Registering Kernel netlink reflector
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: Registering Kernel netlink command channel
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: Registering gratuitous ARP shared channel
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: Opening file '/etc/keepalived/keepalived.conf'.
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: Configuration is using : 68199 Bytes
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: Using LinkWatch kernel netlink reflector...
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: VRRP_Instance(VI_1) Entering BACKUP STATE
Oct 12 10:38:58 localhost Keepalived_healthcheckers[1790]: Netlink reflector reports IP 192.168.0.101 added
Oct 12 10:38:58 localhost Keepalived_healthcheckers[1790]: Netlink reflector reports IP fe80::20c:29ff:fe9d:fbb7 added
Oct 12 10:38:58 localhost Keepalived_healthcheckers[1790]: Registering Kernel netlink reflector
Oct 12 10:38:58 localhost Keepalived_healthcheckers[1790]: Registering Kernel netlink command channel
Oct 12 10:38:58 localhost Keepalived_healthcheckers[1790]: Opening file '/etc/keepalived/keepalived.conf'.
Oct 12 10:38:58 localhost Keepalived_healthcheckers[1790]: Configuration is using : 9686 Bytes
Oct 12 10:38:58 localhost Keepalived_vrrp[1791]: VRRP sockpool: [ifindex(2), proto(112), unicast(0), fd(10,11)]
Oct 12 10:38:58 localhost Keepalived_healthcheckers[1790]: Using LinkWatch kernel netlink reflector...
Oct 12 10:39:01 localhost Keepalived_vrrp[1791]: VRRP_Instance(VI_1) Transition to MASTER STATE
Oct 12 10:39:01 localhost Keepalived_vrrp[1791]: VRRP_Group(G1) Syncing instances to MASTER state
Oct 12 10:39:02 localhost Keepalived_vrrp[1791]: VRRP_Instance(VI_1) Entering MASTER STATE
Oct 12 10:39:02 localhost Keepalived_vrrp[1791]: VRRP_Instance(VI_1) setting protocol VIPs.
Oct 12 10:39:02 localhost Keepalived_vrrp[1791]: VRRP_Instance(VI_1) Sending gratuitous ARPs on eth0 for 192.168.0.115
Oct 12 10:39:02 localhost Keepalived_healthcheckers[1790]: Netlink reflector reports IP 192.168.0.115 added
Oct 12 10:39:07 localhost Keepalived_vrrp[1791]: VRRP_Instance(VI_1) Sending gratuitous ARPs on eth0 for 192.168.0.115


无论换了哪个版本,都是一样。脚本也chmod 777了。iptables和selinux都已经关闭。求哪位大神帮忙解决下。
...全文
2735 7 打赏 收藏 转发到动态 举报
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
-Cristiano- 2018-11-27
  • 打赏
  • 举报
回复
还真是,加个空格就好了,太变态了
jiaxiangwo 2018-08-30
  • 打赏
  • 举报
回复
确实是因为 track_script{ t和{需要加一个空格
cqyy725 2016-08-19
  • 打赏
  • 举报
回复
我不知道你用的什么版本的。虚拟ip配了,你的真实ip呢? 我贴一段我的吧 两台机器,196是虚拟,211 和201是物理机 global_defs { router_id LVS_DEVEL } vrrp_instance VI_1 { state MASTER interface ens32 virtual_router_id 51 priority 100 advert_int 1 authentication { auth_type PASS auth_pass 1111 } virtual_ipaddress { 192.100.1.196 } } virtual_server 192.100.1.196 8080 { delay_loop 6 lb_algo rr lb_kind DR nat_mask 255.255.255.0 persistence_timeout 50 protocol TCP real_server 192.100.1.211 8080 { weight 1 TCP_CHECK{ connect_timeout 3 nb_get_retry 3 delay_before_retry 3 connect_port 8080 } } } }
sswvf520 2016-07-27
  • 打赏
  • 举报
回复
我遇到你和一样的问题。权限也给了777都不得行。。最后发现是个很吐血的原因 track_script{ t和{需要加一个空格。不能连在一起
u010242127 2015-12-27
  • 打赏
  • 举报
回复
我看到你主备的优先级都是90,把备的改低
牛迁迁 2015-12-26
  • 打赏
  • 举报
回复
把 ,track_script {} 放到 virtual_ipaddress{}的下面。
内容概要:本文提出了一种基于改进扩散模型的高海拔地区新能源高波动出力场景生成方法,并提供了完整的Python代码实现。该方法针对高海拔地区风能、光伏等新能源出力波动剧烈、不确定性高的特点,通过优化扩散模型的结构与训练策略,有效捕捉历史数据的概率分布特征与时序相关性,从而生成高质量、多样化的出力场景。文中详细阐述了模型的数学推导、网络架构设计、损失函数优化及采样算法改进,并通过实验证明其在拟合精度、场景多样性与稳定性方面优于传统生成模型,为电力系统在高比例新能源接入下的规划、调度与风险评估提供了可靠的场景输入支持。; 适合人群:具备一定Python编程能力和机器学习基础,从事新能源发电预测、电力系统分析、智能优化、场景生成等方向研究的科研人员、高校研究生及工程技术人员。; 使用场景及目标:①用于高海拔地区风电、光伏出力的不确定性建模与多场景生成;②支撑含高渗透率新能源的电力系统随机优化调度、鲁棒决策与风险评估;③为相关学术研究、论文复现与算法改进提供可运行的技术方案与代码基础; 阅读建议:建议读者结合所提供的完整资源(代码、数据集、说明文档)进行实践操作,重点关注扩散模型的前向加噪与反向去噪过程的设计细节,以及如何将其适配于新能源时序数据的生成任务,通过参数调优与对比实验深入理解模型的生成机制与性能边界。
内容概要:本文围绕基于静态约束法的配电网电动汽车接入容量评估展开研究,提出了一种在新型电力系统背景下评估主动配电网对电动汽车承载能力的方法。研究通过构建数学模型,结合潮流计算与关键约束条件(如电压越限、线路过载等),量化分析配电网可承受的最大电动汽车充电负荷容量,旨在识别规模化电动汽车接入带来的潜在运行风险,并为电网规划与运行提供科学依据。文中配套提供了完整的Matlab代码实现,便于仿真验证与结果复现。此外,该研究与分布式光伏承载力评估、电动汽车可调能力分析等方向形成技术联动,展现了多主题协同的研究体系。; 适合人群:具备电力系统分析基础理论知识及Matlab编程能力的高校研究生、科研机构研究人员,以及从事新能源并网、智能配电网规划与运行等相关领域的工程技术人员。; 使用场景及目标:①用于学术研究中的模型复现与论文撰写支撑;②评估实际配电网中电动汽车大规模接入的可行性与安全边界,指导充电基础设施布局;③作为高校教学案例,帮助学生深入理解电网承载力评估的核心原理、建模方法与仿真技术; 阅读建议:建议结合文中提及的相关研究方向(如二阶锥规划、多面体聚合方法等)进行对比学习,充分利用所提供的Matlab代码与网盘资料开展仿真实验,重点关注约束条件的设定逻辑与潮流计算模块的实现细节,以深化对评估模型机理与工程应用价值的理解。
内容概要:本文围绕“考虑隐私保护的分布式联邦学习电力负荷预测研究”展开,提出了一种基于Python实现的联邦学习框架,旨在解决居民或行业电力负荷预测中用户电表数据隐私泄露的风险。该研究通过构建分布式机器学习模型,使各参与方在不共享原始数据的前提下协同训练全局模型,有效实现了数据“可用不可见”。文中详细阐述了联邦学习的整体架构设计、本地模型训练流程、参数加密传输与安全聚合机制,并结合差分隐私等技术进一步增强系统的隐私保护能力。同时,研究利用真实电力负荷数据集进行了实验验证,展示了方法在预测精度与隐私保障之间的良好平衡,并提供了完整的代码实例与复现指南,便于后续研究与应用拓展。; 适合人群:具备一定机器学习基础和电力系统背景知识,从事智慧能源、隐私计算或人工智能相关方向研究的研究生、科研人员及工程技术人员。; 使用场景及目标:① 实现跨区域、跨主体的电力负荷协同预测,打破数据孤岛;② 在确保用户用电数据隐私安全的前提下提升负荷预测准确性;③ 推动联邦学习在智能电网、需求响应、虚拟电厂等场景中的实际部署与应用。; 阅读建议:建议结合文中提供的Python代码与网盘资料进行动手实践,重点关注联邦学习的通信轮次设计、模型聚合算法(如FedAvg)的实现细节以及差分隐私噪声添加策略,深入理解其对模型性能与隐私强度的影响,为进一步优化与创新奠定基础。
VDA_Band_19.1_3rd edition_2026 English Inspection of Technical Cleanliness 内容概要:本文档为德国汽车工业协会(VDA)发布的第三版《技术清洁度检验:功能相关汽车部件的颗粒污染检测》(VDA 19.1),系统规范了汽车行业中零部件技术清洁度的检测方法与流程。文件涵盖从取样、提取、过滤到分析的全流程标准化操作,重点更新了干法提取(如 Stamp Test 和刷吸法)、小于50µm颗粒的检测、光学子系统和SEM/EDX标准分析方法,并引入统一材料分类体系以提升结果可比性。同时明确了“标准分析”与“自由检验”的区别,前者用于高兼容性检测,后者允许客户与供应商协商定制参数。文档还强化了对非可测组件的技术清洁保障、测量不确定度评估及方法验证的要求,并提供了多个实际案例支持应用落地。; 适合人群:适用于汽车制造业中从事质量控制、工艺开发、供应商管理及相关检测实验室的技术人员和管理人员,尤其适合具备一定质量管理或洁净度检测基础的专业人员。; 使用场景及目标:①用于制定和执行零部件清洁度检测标准;②指导 incoming/outgoing 检验及生产过程监控;③支持失效分析与质量改进项目;④作为企业内部审核和技术交流的依据; 阅读建议:建议结合VDA 19.2及其他相关标准配套使用,重点关注各章节中的起始参数设定、方法选择逻辑及附录中的检查表示例,在实际操作中同步开展方法验证与人员培训,确保检测结果的有效性和可追溯性。

19,614

社区成员

发帖
与我相关
我的任务
社区描述
系统使用、管理、维护问题。可以是Ubuntu, Fedora, Unix等等
社区管理员
  • 系统维护与使用区社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧