官方网站:http://www.clusterlabs.org/doc/crm_cli.html
CRM CLI是分层设计,常见层级如下:
node:主要用于节点的各种操作
resource:主要用于资源的各种操作
ra:查看RA的各种属性
configure:配置资源的多数操作,都是在该层级
cib:类似于configure,只是操作的是cib shadow
进入相应层级的命令,都是crm <层级名>
CRM CLI常用命令:
进入live模式:在shell输入crm,默认进入lib模式
进入cib模式:在live模式中,输入cib new <res>,即进入cib的编辑模式
cib模式下创建、删除、提交资源:
crm cib new <cib>
crm cib delete <cib>
crm cib commit <cib>
列出指定标准的可用RA:
crm ra list <class> [<provider>]
查看指定RA的配置选项:
crm ra meta [<class>:[<provider>:]]<type>
节点的常见操作:
删除节点:crm node delete <node>
停用节点:crm node standby [<node>],默认停用操作命令所在的节点
启动节点:crm node online [<node>]
设置/删除节点的attribute:crm node attribute <node> set <attr> <value>
crm node attribute <node> delete <attr>
资源的常见操作:
显示资源状态:crm resource status [<src>]
启用/停用资源:crm resource start/stop <src>
重启资源:crm resource restart <src>
手动迁移资源:crm resource migrate (move) <rsc> [<node>]
设置/删除资源的property: crm resource param <rsc> set <param> <value>
crm resource param <rsc> delete <param>
设置/删除资源的attribute:crm resource meta <rsc> set <attr> <value>
crm resource meta <rsc> delete <attr>
configure层级的常用操作:
Commands for resources are:
primitive:创建原始资源,最最常用的命令
monitor:资源检视
group:创建组资源
ms/master (master-slave):创建状态克隆
There are three types of constraints:
location:指定资源偏爱运行于某个节点
colocation:指定哪些资源启动在同一个节点
order:指定资源的启动顺序
删除已经配置的configure:
delete <id> 可以删除资源、约束
There are the cluster properties, resource meta attributes defaults, and operations defaults:
property:设置集群的属性,对集群内所有资源有效
rsc_defaults:设置集群资源的默认attribute,对所有集群内所有资源有效
op_defaults:设置集群资源的meta attribute的默认操作,对所有资源有效
常用的设置:crm configure res_defaults resource-stickiness=100
本文转自 li_qinshan 51CTO博客,原文链接:http://blog.51cto.com/share/656284