This output kind of shows it all... I can configure the cluster, put nodes in standby and back online, move resources from one to the other, etc., but if any rule references a node in the configuration, then &#39;crm configure verify&#39; fails saying the node doesn&#39;t exist.  This is a freshly-started cluster, and both nodes have entries in /etc/hosts giving their shortname and fqdn (shortname first, if it matters):<br>
<br>[root@kvm2 ~]# crm<br>crm(live)# configure show<br>node $id=&quot;1023518912&quot; kvm1<br>node $id=&quot;1040296128&quot; kvm2 \<br>        attributes standby=&quot;off&quot;<br>primitive winsrv1 ocf:heartbeat:VirtualDomain \<br>
        params config=&quot;/etc/kvm-configs/winsrv1.xml&quot; \<br>        meta allow-migrate=&quot;true&quot; \<br>        op start interval=&quot;0&quot; timeout=&quot;90s&quot; \<br>        op stop interval=&quot;0&quot; timeout=&quot;180s&quot; \<br>
        op monitor interval=&quot;15s&quot; timeout=&quot;30s&quot; \<br>        op migrate_to interval=&quot;0&quot; timeout=&quot;240s&quot; \<br>        op migrate_from interval=&quot;0&quot; timeout=&quot;240s&quot; \<br>
        utilization cpu=&quot;2&quot; hv_memory=&quot;4096&quot;<br>location cli-prefer-winsrv1 winsrv1 \<br>        rule $id=&quot;cli-prefer-rule-winsrv1&quot; inf: #uname eq kvm1<br>property $id=&quot;cib-bootstrap-options&quot; \<br>
        dc-version=&quot;1.1.7-ee0730e13d124c3d58f00016c3376a1de5323cff&quot; \<br>        cluster-infrastructure=&quot;corosync&quot; \<br>        stonith-enabled=&quot;false&quot; \<br>        last-lrm-refresh=&quot;1344975603&quot;<br>
crm(live)# configure verify<br>WARNING: cli-prefer-winsrv1: referenced node kvm1 does not exist<br>crm(live)# node show<br>kvm1(1023518912): normal<br>kvm2(1040296128): normal<br>        standby: off<br>crm(live)# node standby kvm2<br>
crm(live)# status<br>============<br>Last updated: Tue Aug 14 15:29:26 2012<br>Last change: Tue Aug 14 15:27:26 2012 via crm_resource on kvm2<br>Stack: corosync<br>Current DC: kvm1 (1023518912) - partition with quorum<br>
Version: 1.1.7-ee0730e13d124c3d58f00016c3376a1de5323cff<br>2 Nodes configured, unknown expected votes<br>1 Resources configured.<br>============<br><br>Node kvm2 (1040296128): standby<br>Online: [ kvm1 ]<br><br> winsrv1        (ocf::heartbeat:VirtualDomain): Started kvm1<br>
crm(live)# node online kvm2<br>crm(live)# resource unmove winsrv1<br>crm(live)# resource move winsrv1 kvm2<br>crm(live)# configure show<br>node $id=&quot;1023518912&quot; kvm1<br>node $id=&quot;1040296128&quot; kvm2 \<br>
        attributes standby=&quot;off&quot;<br>primitive winsrv1 ocf:heartbeat:VirtualDomain \<br>        params config=&quot;/etc/kvm-configs/winsrv1.xml&quot; \<br>        meta allow-migrate=&quot;true&quot; \<br>        op start interval=&quot;0&quot; timeout=&quot;90s&quot; \<br>
        op stop interval=&quot;0&quot; timeout=&quot;180s&quot; \<br>        op monitor interval=&quot;15s&quot; timeout=&quot;30s&quot; \<br>        op migrate_to interval=&quot;0&quot; timeout=&quot;240s&quot; \<br>        op migrate_from interval=&quot;0&quot; timeout=&quot;240s&quot; \<br>
        utilization cpu=&quot;2&quot; hv_memory=&quot;4096&quot;<br>location cli-prefer-winsrv1 winsrv1 \<br>        rule $id=&quot;cli-prefer-rule-winsrv1&quot; inf: #uname eq kvm2<br>property $id=&quot;cib-bootstrap-options&quot; \<br>
        dc-version=&quot;1.1.7-ee0730e13d124c3d58f00016c3376a1de5323cff&quot; \<br>        cluster-infrastructure=&quot;corosync&quot; \<br>        stonith-enabled=&quot;false&quot; \<br>        last-lrm-refresh=&quot;1344975603&quot;<br>
crm(live)# configure verify<br>WARNING: cli-prefer-winsrv1: referenced node kvm2 does not exist<br>crm(live)# <br><br><br>Did I miss something obvious?<br><br>Thanks for any pointers,<br>Mark<br>