Hello<br><br>I have 3 node cluster (in future we add another one node) with follow configuration:<br><br>crm(live)configure# show<br>node drbd1<br>node drbd2<br>node drbd3<br>primitive drbd_web ocf:linbit:drbd \<br>        params drbd_resource="web" \<br>
        op monitor interval="10s" timeout="60s"<br>primitive drbd_web-U ocf:linbit:drbd \<br>        params drbd_resource="web-U" \<br>        op monitor interval="10s" timeout="60s"<br>
primitive iscsi_ip_web ocf:heartbeat:IPaddr2 \<br>        params ip="192.168.19.91" nic="eth1:1" cidr_netmask="24"<br>primitive iscsi_web_target ocf:heartbeat:iSCSITarget \<br>        params iqn="iqn.2010-06.playrix.local:san.web" \<br>
        op monitor interval="10s" timeout="30s"<br>primitive iscsi_web_target_lun0 ocf:heartbeat:iSCSILogicalUnit \<br>        params lun="0" path="/dev/drbd10" target_iqn="iqn.2010-06.playrix.local:san.web"<br>
group iscsi_web iscsi_ip_web iscsi_web_target iscsi_web_target_lun0<br>ms ms_drbd_web drbd_web \<br>        meta master-max="1" master-node-max="1" clone-max="2" clone-node-max="1" notify="true" globally-unique="false" target-role="Started" is-managed="true"<br>
ms ms_drbd_web-U drbd_web-U \<br>        meta master-max="1" master-node-max="1" clone-max="1" clone-node-max="1" notify="true" is-managed="true" globally-unique="false"<br>
location ms_drbd_web-U_on_drbd1_or_drbd2 ms_drbd_web-U \<br>        rule $id="ms_drbd_web-U_on_drbd1_or_drbd2-rule" -inf: #uname ne drbd1 and #uname ne drbd2<br>location ms_drbd_web_on_drbd1_or_drbd2 ms_drbd_web \<br>
        rule $id="ms_drbd_web_on_drbd1_or_drbd2-rule" -inf: #uname ne drbd1 and #uname ne drbd2<br>colocation drbd_web-U_on_drbd_web inf: ms_drbd_web-U:Master ms_drbd_web:Master<br>colocation iscsi_ip_web_on_drbd_web inf: iscsi_ip_web ms_drbd_web:Master<br>
colocation iscsi_web_on_drbd_web-U inf: iscsi_web ms_drbd_web-U:Master<br>order iscsi_web_after_ms_drbd_web-U inf: ms_drbd_web-U:start iscsi_web<br>order ms_drbd_web-U_after_iscsi_ip_web inf: iscsi_ip_web:start ms_drbd_web-U:start<br>
order ms_drbd_web-U_before_ms_drbd_web inf: ms_drbd_web:promote iscsi_ip_web:start<br>property $id="cib-bootstrap-options" \<br>        dc-version="1.0.11-db98485d06ed3fe0fe236509f023e1bd4a5566f1" \<br>
        cluster-infrastructure="openais" \<br>        expected-quorum-votes="3" \<br>        stonith-enabled="false" \<br>        last-lrm-refresh="1307432239" \<br>        symmetric-cluster="true"<br>
<br><br><br>In this configuration i want that all resources ran only on drbd1 and drb2 nodes. And as i understand wit location constraint i should reach this objective. And all resource mast run on drbd1 and drbb2 nodes. But i got follow error:<br>
<br>Failed actions:<br>    iscsi_web_target_monitor_0 (node=drbd3, call=5, rc=6, status=complete): not configured<br>    iscsi_web_target_lun0_monitor_0 (node=drbd3, call=6, rc=6, status=complete): not configured<br><br><br>
<br>And i confused why drbd3? There is nothing must run o monitored. Please if it is possible explain this behavior<br><br><br>