:_mod-docs-content-type: PROCEDURE [id="preventing-pacemaker-from-monitoring-compute-nodes_{context}"] = Preventing Pacemaker from monitoring Compute nodes [role="_abstract"] You must disable Pacemaker so that it does not monitor your Compute nodes during the adoption. For example, if a network issue occurs during the adoption, Pacemaker attempts to reboot the Compute nodes to recover them, which breaks the adoption. .Procedure . Retrieve the names of the Compute remote resources: + ---- $ sudo pcs stonith |grep -B1 stonith-fence_compute-fence-nova |grep Target |awk -F ': ' '{print $2}' ---- . Disable the stonith and `pacemaker_remote` resources on each Compute remote resource: + ---- $ sudo pcs property set stonith-enabled=false $ sudo pcs resource disable ---- + where: ``:: Specifies the name of the Compute remote resource in your environment. . Retrieve the name of the Compute stonith resources: + ---- $ sudo pcs stonith |grep Level |grep fence_compute |awk '{print $4}' |awk -F ',' '{print $1}' |sort |uniq ---- . Remove the Compute node `pacemaker_remote` and fencing resources: + ---- $ sudo pcs stonith disable stonith-fence_compute-fence-nova $ sudo pcs stonith disable $ sudo pcs stonith delete $ sudo pcs resource delete $ sudo pcs resource disable compute-unfence-trigger-clone $ sudo pcs resource delete compute-unfence-trigger-clone $ sudo pcs resource disable nova-evacuate $ sudo pcs resource delete nova-evacuate ---- + where: ``:: Specifies the name of the Compute stonith resource in your environment.