[ClusterLabs] how to active Clustered Logical Volume Manager with CRM

Travis Bean tbean74 at gmail.com
Mon Jul 28 16:49:54 UTC 2025


In the past, I always used the following to activate the Distributed
Lock Manager (DLM) and Clustered Logical Volume Manager (CLVM):

crm<<EOF.base
  configure
    property no-quorum-policy="ignore"
    rsc_defaults resource-stickiness="100"
    primitive controld ocf:pacemaker:controld \
      op monitor interval="60s" timeout="30s" \
      op start interval="0" timeout="90s" \
      op stop interval="0" timeout="100s"
    primitive clvmd ocf:lvm2:clvmd \
      op monitor interval="60s" timeout="30s" \
      op start interval="0" timeout="90s" \
      op stop interval="0" timeout="100s"
    group gr_base controld clvmd
    clone cl_base gr_base \
      meta interleave="true"
    commit
EOF.base

Now I get an error when attempting to use this code. The error is as follows:

ERROR: ocf:lvm2:clvmd: got no meta-data, does this RA exist?
ERROR: ocf:lvm2:clvmd: no such resource agent

Kind regards,

Travis Bean


More information about the Users mailing list