Useful Corosync and Pacemaker Commands: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
No edit summary |
No edit summary |
||
| Line 28: | Line 28: | ||
<pre>crm resource stop <resource name></pre> |
<pre>crm resource stop <resource name></pre> |
||
* Restart a resource or a resource group (if the resource is in a resource group then the whole group will be restarted): |
|||
<pre>crm resource restart <resource name></pre> |
|||
* Edit a resource, which allows its reconfiguration: |
* Edit a resource, which allows its reconfiguration: |
||
Revision as of 12:03, 3 August 2020
List of useful commands for Corosync and Pacemaker clusters.
- View the real-time status of nodes and resources:
crm_mon
- View one-off status of nodes and resources:
crm status
- View cluster configuration:
crm configure show
- Set a node to standby mode (can also be used to simulate a node becoming unavailable):
crm node standby <node name>
- Set a node's status from standby to online:
crm node online <node name>
- Start a resource or a resource group:
crm resource start <resource name>
- Stop a resource or a resource group:
crm resource stop <resource name>
- Restart a resource or a resource group (if the resource is in a resource group then the whole group will be restarted):
crm resource restart <resource name>
- Edit a resource, which allows its reconfiguration:
crm configure edit <resource name>
- Delete a resource (must be stopped before it is deleted):
crm configure delete <resource name>
- Migrate the enswitch resource group to another node (avoid migrating specific resources separately, migrate the whole enswitch group instead):
crm resource migrate enswitch <node name>
- Configuring a cluster to not manage a resource:
crm_resource --resource <resource name> --set-parameter is-managed --meta --parameter-value false
- Clear a resource that is stuck in "(unmanaged) FAILED" state, e.g. due to a failed stop action:
crm_resource -P crm resource cleanup <resource name>
- List resource agents by type:
crm ra list lsb crm ra list systemd crm ra list ocf heartbeat crm ra list ocf pacemaker