pcs命令使用

创建web服务资源:

[root@node1 ~]# pcs resource create http lsb:httpd op monitor interval=20 timeout=20 on-fail=restart


创建文件系统资源

[root@node1 ~]# pcs resource create webstore ocf:heartbeat:Filesystem params device="192.168.30.115:/web/data" directory="/var/www/html" fstype="nfs" op monitor interval=20 timeout=20 on-fail=restart


创建IP地址资源

[root@node1 ~]# pcs resource create webip ocf:heartbeat:IPaddr ip=192.168.30.230 op monitor interval=20 timeout=20 on-fail=restart


查看指定资源属性:

[root@node1 ~]# pcs resource list lsb


查看资源类别:

[root@node1 ~]# pcs resource standards


查看默认资源管理器:

[root@node1 ~]# pcs resource providers
heartbeat
pacemaker


查看某个资源的代理:


[root@node1 ~]# pcs resource agents lsb


设置排列约束(资源同时启动,关闭,重启)

[root@node1 ~]# pcs constraint colocation add webip http


设置顺序约束(资源启动关闭顺序)


[root@node1 ~]# pcs constraint order start webip then start http
Adding webip http (kind: Mandatory) (Options: first-action=start then-action=start)


设置集群全局属性

[root@node1 ~]# pcs property set no-quorum-policy=ignore


设置集群节点为备用节点,以及重新上线

[root@node1 ~]# pcs cluster standby node1.luojianlong.com
[root@node1 ~]# pcs cluster unstandby node1.luojianlong.com


你可能感兴趣的:(pcs命令使用)