12.5. 使用 pcs 命令导出资源约束
从 Red Hat Enterprise Linux 9.3 开始,您可以使用 pcs constraint
命令的 --output-format=cmd
选项显示可在不同系统上重新创建配置的资源约束的 pcs
命令。
以下命令创建一个 IPaddr2
资源和一个 apache
资源。
# pcs resource create VirtualIP IPaddr2 ip=198.51.100.3 cidr_netmask=24 Assumed agent name 'ocf:heartbeat:IPaddr2' (deduced from 'IPaddr2') # pcs resource create Website apache configfile="/etc/httpd/conf/httpd.conf" statusurl="http://127.0.0.1/server-status" Assumed agent name 'ocf:heartbeat:apache' (deduced from 'apache')
以下命令为两个资源配置位置约束、托管约束和顺序约束。
# pcs constraint location Website avoids node1 # pcs constraint colocation add Website with VirtualIP # pcs constraint order VirtualIP then Website Adding VirtualIP Website (kind: Mandatory) (Options: first-action=start then-action=start)
创建资源和约束后,以下命令显示可用于在不同系统上重新创建约束的 pcs
命令。
# pcs constraint --output-format=cmd
pcs -- constraint location add location-Website-node1--INFINITY resource%Website node1 -INFINITY;
pcs -- constraint colocation add Website with VirtualIP INFINITY \
id=colocation-Website-VirtualIP-INFINITY;
pcs -- constraint order start VirtualIP then start Website \
id=order-VirtualIP-Website-mandatory