3.4. 将配置更改保存到文件
使用 pcs 命令时,您可以使用
-f
选项将配置更改保存到文件,而不影响活动的 CIB。
如果您之前已经配置了集群,且已经有一个活跃的 CIB,则使用以下命令保存原始 xml 文件。
pcs cluster cib filename
例如,以下命令可将 CIB 中的原始 xml 保存到名为
testfile
的文件中:
# pcs cluster cib testfile
以下命令在
testfile
文件中创建一个资源,但不将该资源添加到当前正在运行的集群配置中。
# pcs -f testfile resource create VirtualIP ocf:heartbeat:IPaddr2 ip=192.168.0.120 cidr_netmask=24 op monitor interval=30s
您可以使用以下命令将
testfile
的当前内容推送到 CIB 中。
# pcs cluster cib-push testfile