linux – 让心脏起搏器重试失败的资源

前端之家收集整理的这篇文章主要介绍了linux – 让心脏起搏器重试失败的资源前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想让心脏起搏器重试我的资源
primitive Imq ocf:example:imq \
   op monitor on-fail="restart" interval="10s" \
   op start interval="0" timeout="60s" on-fail="restart" \
   Meta failure-timeout="30s"

请注意,此资源通过固定到第一个节点

location location_Imq Imq inf: vm1
location location_Imq1 Imq -inf: vm2

目前,如果我打破了阻止此资源启动的故障,则返回INFINITY并停止尝试重新启动服务.

我想永远不要放弃资源,以便一旦间歇性问题清除其自身,资源重新启动并恢复服务.

在CentOS上使用pacemaker 1.0.

解决方法

事实证明,解决方案非常简单,只需将“start-failure-is-fatal”设置为false即可.
crm configure property start-failure-is-fatal=false

这是一个全局选项,它的默认值为true,因此我的资源失败了.

Pacemaker configuration reference

原文链接:https://www.f2er.com/linux/397076.html

猜你在找的Linux相关文章