Hi,<br><br><div class="gmail_quote">On Thu, Oct 4, 2012 at 1:00 PM,  <span dir="ltr"><<a href="mailto:tony@intermodesystems.com" target="_blank">tony@intermodesystems.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi Guys,<br>
<br>
Im new to pacemaker and this cluster software and have hit an issue I wonder if someone can help me with please?<br>
<br>
I want to setup an ip failover (Which I have done) between 2 nodes, but now I need to add a route failover too and this is where I have got stuck.<br>
<br>
the ip failover works fine and allows the vip to fail over between the two nodes, but now i have added a route failover which needs to go over at the same time as the ip, it has error-ed and im an not sure why.<br></blockquote>
<div><br>It goes to the other node, because Pacemaker tries to balance resources.<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
here is the output of crm_mon. It shows the ip on node01, but when i start node02 it fails over the route for some reason?:<br>
<br>
[root@node01 ~]# crm_mon -1<br>
============<br>
Last updated: Thu Oct  4 10:52:43 2012<br>
Stack: openais<br>
Current DC: node01.local - partition with quorum<br>
Version: 1.0.12-unknown<br>
2 Nodes configured, 2 expected votes<br>
2 Resources configured.<br>
============<br>
<br>
Online: [ node01.local node02.local ]<br>
<br>
 ClusterIP      (ocf::heartbeat:IPaddr2):       Started node01.local<br>
 ClusterRoute   (ocf::heartbeat:Route): Started node02.local (unmanaged) FAILED<br>
<br>
Failed actions:<br>
    ClusterRoute_start_0 (node=node02.local, call=4, rc=5, status=complete): not installed<br>
    ClusterRoute_stop_0 (node=node02.local, call=5, rc=5, status=complete): not installed<br>
<br>
<br>
here is the output from crm configure show:<br>
<br>
[root@node01 ~]# crm configure show<br>
node node01.local<br>
node node02.local<br>
primitive ClusterIP ocf:heartbeat:IPaddr2 \<br>
        params ip="192.168.231.217" cidr_netmask="22" nic="bond0.248" \<br>
        op monitor interval="30s"<br>
primitive ClusterRoute ocf:heartbeat:Route \<br>
        params destination="<a href="http://0.0.0.0/0" target="_blank">0.0.0.0/0</a>" device="bond0.248" gateway="192.168.231.209" \<br>
        op monitor interval="10" timeout="20" depth="0"<br>
property $id="cib-bootstrap-options" \<br>
        dc-version="1.0.12-unknown" \<br>
        cluster-infrastructure="<u></u>openais" \<br>
        expected-quorum-votes="2" \<br>
        stonith-enabled="false" \<br>
        no-quorum-policy="ignore"<br>
<br>
hope someone can help with this as I have no idea why it tries to start the route part on the other node?<br></blockquote><div><br>You will have to set constraints to tie up the relation between the two resources. <br><br>
order ClusterRoute_after_ClusterIP inf: ClusterIP ClusterRoute<br>colocation ClusterRoute_with_ClusterIP inf: ClusterRoute ClusterIP<br><br>In this example the ClusterIP will start before the ClusterRoute, and the latter will start on the node where the former does.<br>
 </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Thanks in advance for any replies!<br>
<br>
Tony<br>
<br>
______________________________<u></u>_________________<br>
Pacemaker mailing list: <a href="mailto:Pacemaker@oss.clusterlabs.org" target="_blank">Pacemaker@oss.clusterlabs.org</a><br>
<a href="http://oss.clusterlabs.org/mailman/listinfo/pacemaker" target="_blank">http://oss.clusterlabs.org/<u></u>mailman/listinfo/pacemaker</a><br>
<br>
Project Home: <a href="http://www.clusterlabs.org" target="_blank">http://www.clusterlabs.org</a><br>
Getting started: <a href="http://www.clusterlabs.org/doc/Cluster_from_Scratch.pdf" target="_blank">http://www.clusterlabs.org/<u></u>doc/Cluster_from_Scratch.pdf</a><br>
Bugs: <a href="http://bugs.clusterlabs.org" target="_blank">http://bugs.clusterlabs.org</a><br>
</blockquote></div><br>Cheers.<br>