0

我正在尝试在 CentOS7 上使用 Pacemaker 创建一个 HA 集群。所需资源之一是定制服务。我有一个符合 LSB 的初始化脚本,已放入 /etc/init.d,并在运行时将其列出:

pcs resource agents lsb:heartbeat

当我尝试添加资源时

pcs resource create MyServer lsb:heartbeat:MyServer target_role=started resource_failure_stickiness=-INFINITY op monitor interval=30s op start timeout=180s op stop timeout=180s op status timeout=15 --group AllResources

我得到的错误:

Error: Unable to create resource 'lsb:heartbeat:MyServer', it is not installed on this system (use --force to override)

如果我使用 --force 运行它,我会得到以下信息:

Call cib_replace failed (-203): Update does not conform to the configured schema

AllResources 组还有另外两个资源:Ping 和 IPAddr2,它们以类似的方式添加,没有错误。

我错过了什么?有人遇到过这样的事情吗?

4

1 回答 1

2

事实证明,与 Heartbeat 不同,在 Pacemaker 中,我们处理自定义 LSB 脚本的形式是 lsb:MyServer。工作命令是:

pcs resource create MyServer lsb:MyServer target_role=started resource_failure_stickiness=-INFINITY op monitor interval=30s op start timeout=180s op stop timeout=180s op status timeout=15 --group AllResources
于 2017-08-09T10:09:36.830 回答