Hi,<br><br><div class="gmail_quote">On Tue, Feb 1, 2011 at 6:55 PM, paul harford <span dir="ltr">&lt;<a href="mailto:harfordmeister@gmail.com">harfordmeister@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div>Hi Again :-)</div>
<div> </div>
<div>I think my main problem is my location configuration when i bring down eth0 on node1 the and looking at crm_m -f the count on node 2 never increases</div>
<div> </div>
<div>Could anyone help me out with the pingd / location restraints required for a group of resources to failover from node1 to node 2 if the node1 can no longer ping the default gateway ?</div></blockquote><div><br>Don&#39;t use pingd, use ocf:pacemaker:ping.<br>
Here&#39;s a working config:<br>primitive ping_the_gw ocf:pacemaker:ping \<br>    params host_list=&quot;1.2.3.4&quot; multiplier=&quot;100&quot; name=&quot;ping_the_gw&quot; \<br>    op monitor interval=&quot;5s&quot; timeout=&quot;60s&quot; \<br>
    op start interval=&quot;0s&quot; timeout=&quot;60s&quot; \<br>    op stop interval=&quot;0s&quot;<br>clone ping_the_gw_clone ping_the_gw \<br>    meta globally-unique=&quot;false&quot;<br>location nok_ping_the_gw grouped_resources \<br>
    rule $id=&quot;nok_ping_the_gw-rule&quot; -inf: not_defined ping_the_gw or ping_the_gw lte 0<br>group grouped_resources virtual_ip fs_mysql httpd mysqld<br><br>The &quot;grouped_resources&quot; group will not be allowed to run on a node if the ping_the_gw resource is not defined on that node or that node cannot ping the gateway. <br>
<br>In your config you should change <br>location web_location crhweb \<br>         rule $id=&quot;web_location-rule&quot; -inf: not_defined pingd or pingd lte 0<br>to<br>location web_location crhweb \<br>         rule $id=&quot;web_location-rule&quot; -inf: not_defined MYPING or MYPING lte 0<br>
and<br>primitive MYPING ocf:pacemaker:ping \<br>         params host_list=&quot;10.100.0.254&quot; multiplier=&quot;1000&quot; \<br>         op monitor interval=&quot;15s&quot; timeout=&quot;20s&quot; \<br>         op start interval=&quot;0&quot; timeout=&quot;90s&quot; \<br>
         op stop interval=&quot;0&quot; timeout=&quot;100s&quot;<br>to<br>primitive MYPING ocf:pacemaker:ping \<br>         params host_list=&quot;10.100.0.254&quot; multiplier=&quot;1000&quot; \<br>         op monitor interval=&quot;15s&quot; timeout=&quot;20s&quot; \<br>
         op start interval=&quot;0&quot; timeout=&quot;90s&quot; \<br>         op stop interval=&quot;0&quot; timeout=&quot;100s&quot;<br><br>Regards,<br>Dan<br> </div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<div> </div>
<div>Thanks</div>
<div>again</div><div><div></div><div class="h5">
<div> </div>
<div><br><br> </div>
<div class="gmail_quote">On 1 February 2011 13:08, paul harford <span dir="ltr">&lt;<a href="mailto:harfordmeister@gmail.com" target="_blank">harfordmeister@gmail.com</a>&gt;</span> wrote:<br>
<blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;" class="gmail_quote">Hi Nikita<br>Sorry i fogot i have 2 ethernet interfaces eth 1 is for the heartbeat and eth 0 is for the public ip and the virtual ip for apache is 10.100.1.100<br>

<br>Thanks <br><font color="#888888">Paul</font> 
<div>
<div></div>
<div><br><br>
<div class="gmail_quote">On 1 February 2011 12:04, Nikita Michalko <span dir="ltr">&lt;<a href="mailto:michalko.system@a-i-p.com" target="_blank">michalko.system@a-i-p.com</a>&gt;</span> wrote:<br>
<blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote">Hi Paul!<br><br>Can you show me your <a href="http://ha.cf/" target="_blank">ha.cf</a>?<br>
How many network  interfaces do you use for this cluster?<br>
If only one, it is the typical split-brain situation after cable pull down!<br><br>Nikita<br><br><br>Am Dienstag, 1. Februar 2011 12:05 schrieb paul harford:<br>
<div>
<div></div>
<div>&gt; Hi NIkita<br>&gt; I reverted to an early snapshot and started again i now have ping d running<br>&gt; but when i remove the eth0 the resource does not failover<br>&gt;<br>&gt; i can see in the ha-log that the ping detects the network is gone but it<br>

&gt; does not move the resource. Can anyone see the error in my config?<br>&gt;<br>&gt;<br>&gt; node $id=&quot;271808bb-ed74-4eaa-8c94-bf32a00074dd&quot; node1 \<br>&gt;         attributes standby=&quot;off&quot;<br>&gt; node $id=&quot;59440607-2a5c-450e-84fa-94bf69742671&quot; node2 \<br>

&gt;         attributes standby=&quot;off&quot;<br>&gt; primitive MYPING ocf:pacemaker:pingd \<br>&gt;         params host_list=&quot;10.100.0.254&quot; multiplier=&quot;1000&quot; \<br>&gt;         op monitor interval=&quot;15s&quot; timeout=&quot;20s&quot; \<br>

&gt;         op start interval=&quot;0&quot; timeout=&quot;90s&quot; \<br>&gt;         op stop interval=&quot;0&quot; timeout=&quot;100s&quot;<br>&gt; primitive crhweb ocf:heartbeat:apache \<br>&gt;         params configfile=&quot;/etc/httpd/conf/httpd.conf&quot; \<br>

&gt;         op monitor interval=&quot;60s&quot; \<br>&gt;         meta target-role=&quot;Started&quot;<br>&gt; primitive failoverip ocf:heartbeat:IPaddr \<br>&gt;         params ip=&quot;10.100.1.100&quot; cidr_netmask=&quot;255.255.0.0&quot; \<br>

&gt;         op monitor interval=&quot;30s&quot;<br>&gt; clone MYPINGCLONE MYPING \<br>&gt;         meta globally-unique=&quot;false&quot;<br>&gt; location web_location crhweb \<br>&gt;         rule $id=&quot;web_location-rule&quot; -inf: not_defined pingd or pingd lte 0<br>

&gt; colocation crhweb-with-failoverip inf: crhweb failoverip<br>&gt; order crhweb-after-failoverip inf: MYPINGCLONE failoverip crhweb<br>&gt; property $id=&quot;cib-bootstrap-options&quot; \<br>&gt;         dc-version=&quot;1.0.10-da7075976b5ff0bee71074385f8fd02f296ec8a3&quot; \<br>

&gt;         cluster-infrastructure=&quot;Heartbeat&quot; \<br>&gt;         stonith-enabled=&quot;false&quot; \<br>&gt;         no-quorum-policy=&quot;ignore&quot;<br>&gt; rsc_defaults $id=&quot;rsc-options&quot; \<br>&gt;         resource-stickiness=&quot;100&quot;<br>

&gt;<br>&gt;<br>&gt; HA_LOG<br>&gt;<br>&gt; Jan 28 11:17:42 node1 heartbeat: [2872]: ERROR: glib: Error sending packet:<br>&gt; Network is unreachable<br>&gt; Jan 28 11:17:42 node1 heartbeat: [2872]: info: glib: euid=0 egid=0<br>

&gt; Jan 28 11:17:42 node1 heartbeat: [2872]: ERROR: write_child: write failure<br>&gt; on ping 10.100.0.254.: Network is unreachable<br>&gt; Jan 28 11:17:43 node1 pingd: [6004]: WARN: ping_write: Wrote -1 of 39<br>&gt; chars: Network is unreachable (101<br>

&gt;<br>&gt; On 1 February 2011 09:35, paul harford &lt;<a href="mailto:harfordmeister@gmail.com" target="_blank">harfordmeister@gmail.com</a>&gt; wrote:<br>&gt; &gt; Hi NIkita<br>&gt; &gt; Many thanks for your assistance, i updated the changes you noticed but<br>

&gt; &gt; now my 2 nodes just keep rebooting, did i enter something incorrectly in<br>&gt; &gt; the pingd directive ?<br>&gt; &gt;<br>&gt; &gt; Paul<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; i can see these errors in the messages log and my configuration is below<br>

&gt; &gt;<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: notice: clone_print:  Clone<br>&gt; &gt; Set: connected<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: notice: short_print:<br>&gt; &gt; Stopped: [ pingd:0 pingd:1 ]<br>

&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: info: rsc_merge_weights:<br>&gt; &gt; failoverip: Rolling back scores from crhweb<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: info: native_color: Resource<br>

&gt; &gt; crhweb cannot run anywhere<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: notice: RecurringOp:  Start<br>&gt; &gt; recurring monitor (10s) for pingd:0 on crhnode2<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: ERROR: is_op_dup: Operation<br>

&gt; &gt; pingd-monitor-5s-0 is a duplicate of pingd-monitor-5s<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: ERROR: is_op_dup: Do not use<br>&gt; &gt; the same (name, interval) combination more than once per resource<br>

&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: ERROR: is_op_dup: Operation<br>&gt; &gt; pingd-monitor-5s-0 is a duplicate of pingd-monitor-5s<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: ERROR: is_op_dup: Do not use<br>

&gt; &gt; the same (name, interval) combination more than once per resource<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: notice: RecurringOp:  Start<br>&gt; &gt; recurring monitor (10s) for pingd:1 on crhnode1<br>

&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: ERROR: is_op_dup: Operation<br>&gt; &gt; pingd-monitor-5s-0 is a duplicate of pingd-monitor-5s<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: ERROR: is_op_dup: Do not use<br>

&gt; &gt; the same (name, interval) combination more than once per resource<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: ERROR: is_op_dup: Operation<br>&gt; &gt; pingd-monitor-5s-0 is a duplicate of pingd-monitor-5s<br>

&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: ERROR: is_op_dup: Do not use<br>&gt; &gt; the same (name, interval) combination more than once per resource<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: notice: LogActions: Leave<br>

&gt; &gt; resource failoverip (Started crhnode1)<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: notice: LogActions: Stop<br>&gt; &gt; resource crhweb      (crhnode1)<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: notice: LogActions: Start<br>

&gt; &gt; pingd:0     (crhnode2)<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: notice: LogActions: Start<br>&gt; &gt; pingd:1     (crhnode1)<br>&gt; &gt; Feb  1 09:01:06 crhnode2 crmd: [3742]: info: do_state_transition: State<br>

&gt; &gt; transition S_POLICY_ENGINE -&gt; S_TRANSITION_ENGINE [ input=I_PE_SUCCESS<br>&gt; &gt; cause=C_IPC_MESSAGE origin=handle_response ]<br>&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: info: process_pe_message:<br>

&gt; &gt; Transition 59: PEngine Input stored in: /var/lib/pengine/pe-input-82.bz2<br>&gt; &gt; Feb  1 09:01:06 crhnode2 crmd: [3742]: info: unpack_graph: Unpacked<br>&gt; &gt; transition 59: 14 actions in 14 synapses<br>

&gt; &gt; Feb  1 09:01:06 crhnode2 pengine: [4103]: info: process_pe_message:<br>&gt; &gt; Configuration ERRORs found during PE processing.  Please run &quot;crm_verify<br>&gt; &gt; -L&quot; to identify issues.<br>&gt; &gt;<br>

&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; here is my current configuration<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; node $id=&quot;271808bb-ed74-4eaa-8c94-bf32a00074dd&quot; crhnode1 \<br>&gt; &gt;         attributes standby=&quot;off&quot;<br>

&gt; &gt; node $id=&quot;59440607-2a5c-450e-84fa-94bf69742671&quot; crhnode2 \<br>&gt; &gt;         attributes standby=&quot;off&quot;<br>&gt; &gt; primitive crhweb ocf:heartbeat:apache \<br>&gt; &gt;<br>&gt; &gt;         params configfile=&quot;/etc/httpd/conf/httpd.conf&quot; \<br>

&gt; &gt;         op monitor interval=&quot;60s&quot; \<br>&gt; &gt;         meta target-role=&quot;Started&quot;<br>&gt; &gt; primitive failoverip ocf:heartbeat:IPaddr \<br>&gt; &gt;         params ip=&quot;10.100.1.100&quot; cidr_netmask=&quot;255.255.0.0&quot; \<br>

&gt; &gt;         op monitor interval=&quot;30s&quot; \<br>&gt; &gt;         meta target-role=&quot;Started&quot;<br>&gt; &gt; primitive pingd ocf:pacemaker:pingd \<br>&gt; &gt;         params dampen=&quot;5s&quot; host_list=&quot;10.100.0.254&quot; multiplier=&quot;1000&quot;<br>

&gt; &gt; name=&quot;pingval&quot; \<br>&gt; &gt;         operations $id=&quot;pingd-operations&quot; \<br>&gt; &gt;         op monitor interval=&quot;10s&quot; timeout=&quot;20s&quot; \<br>&gt; &gt;         op monitor interval=&quot;90s&quot; timeout=&quot;25s&quot; start \<br>

&gt; &gt;         op monitor interval=&quot;100s&quot; timeout=&quot;25s&quot; stop<br>&gt; &gt; clone connected pingd \<br>&gt; &gt;<br>&gt; &gt;         meta globally-unique=&quot;false&quot; target-role=&quot;started&quot;<br>

&gt; &gt; location cli-prefer-crhweb crhweb \<br>&gt; &gt;<br>&gt; &gt;         rule $id=&quot;cli-prefer-rule-crhweb&quot; inf: #uname eq crhnode1<br>&gt; &gt; location crhweb_on_connected_node crhweb \<br>&gt; &gt;         rule $id=&quot;crhweb_on_connected_node-rule&quot; -inf: not_defined<br>

&gt; &gt; pingval or pingval lte 0<br>&gt; &gt;<br>&gt; &gt; location prefer-crhnode1 crhweb 50: crhnode1<br>&gt; &gt; colocation crhweb-with-failoverip inf: crhweb failoverip<br>&gt; &gt; order crhweb-after-failoverip inf: pingd failoverip crhweb<br>

&gt; &gt;<br>&gt; &gt; property $id=&quot;cib-bootstrap-options&quot; \<br>&gt; &gt;         dc-version=&quot;1.0.10-da7075976b5ff0bee71074385f8fd02f296ec8a3&quot; \<br>&gt; &gt;         cluster-infrastructure=&quot;Heartbeat&quot; \<br>

&gt; &gt;         stonith-enabled=&quot;false&quot; \<br>&gt; &gt;         no-quorum-policy=&quot;ignore&quot;<br>&gt; &gt;<br>&gt; &gt; On 1 February 2011 07:21, Nikita Michalko<br>&lt;<a href="mailto:michalko.system@a-i-p.com" target="_blank">michalko.system@a-i-p.com</a>&gt;wrote:<br>

&gt; &gt;&gt; Hi Paul,<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; see below!<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; Am Montag, 31. Januar 2011 19:55 schrieb paul harford:<br>&gt; &gt;&gt; &gt; HI guys<br>&gt; &gt;&gt; &gt; i&#39;m having some issues with a ping directive, my current config is<br>

&gt; &gt;&gt; &gt; below and basically i want the web resource to failover to the second<br>&gt; &gt;&gt; &gt; node if<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; the<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; &gt; ping can no longer contact the default gateway<br>

&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt; so here goes<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt; crm configure primitive ping ocf:pacemaker:ping params dampen=5s<br>&gt; &gt;&gt; &gt; host_list=(default GateWay) multplier=1000 name=pingval operations<br>

&gt; &gt;&gt; &gt; $id=ping-operations op moinitor interval=10s timeout=15s<br>&gt; &gt;&gt;<br>&gt; &gt;&gt;  - this is surely wrong: &quot;moinitor&quot; ?<br>&gt; &gt;&gt;  - no such primitive (ping) below ...<br>&gt; &gt;&gt;<br>

&gt; &gt;&gt; HTH<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; Nikita Michalko<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; &gt; and<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt; crm configure clone connected ping meta globally-unique=false<br>
&gt; &gt;&gt; &gt; target-role=started<br>
&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt; and<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt; location web_on_connected_node cweb rule<br>&gt; &gt;&gt; &gt; $id=web_on_connected_node-rule -inf: not_defined pingval or pingval<br>

&gt; &gt;&gt; &gt; lte 0<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt; Does anyone see any isssues&#39;s whith the above confiuguration ? i want<br>&gt; &gt;&gt; &gt; to check first as the last time i tried it wouldn&#39;t work and my<br>

&gt; &gt;&gt; &gt; resources would not failover or start<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt;<br>&gt; &gt;&gt; &gt; node $id=&quot;271808bb-ed74-4eaa-8c94-bf32a00074dd&quot; crhnode1 \<br>

&gt; &gt;&gt; &gt;         attributes standby=&quot;off&quot;<br>&gt; &gt;&gt; &gt; node $id=&quot;59440607-2a5c-450e-84fa-94bf69742671&quot; crhnode2 \<br>&gt; &gt;&gt; &gt;         attributes standby=&quot;off&quot;<br>

&gt; &gt;&gt; &gt; primitive cweb ocf:heartbeat:apache \<br>&gt; &gt;&gt; &gt;         params configfile=&quot;/etc/httpd/conf/httpd.conf&quot; \<br>&gt; &gt;&gt; &gt;         op monitor interval=&quot;60s&quot; \<br>&gt; &gt;&gt; &gt;         meta target-role=&quot;Started&quot;<br>

&gt; &gt;&gt; &gt; primitive failoverip ocf:heartbeat:IPaddr \<br>&gt; &gt;&gt; &gt;         params ip=&quot;10.100.1.100&quot; cidr_netmask=&quot;255.255.0.0&quot; \<br>&gt; &gt;&gt; &gt;         op monitor interval=&quot;30s&quot; \<br>

&gt; &gt;&gt; &gt;         meta target-role=&quot;Started&quot;<br>&gt; &gt;&gt; &gt; location cli-prefer-cweb cweb \<br>&gt; &gt;&gt; &gt;         rule $id=&quot;cli-prefer-rule-crhweb&quot; inf: #uname eq crhnode1<br>&gt; &gt;&gt; &gt; location prefer-crhnode1 crhweb 50: crhnode1<br>

&gt; &gt;&gt; &gt; colocation cweb-with-failoverip inf: cweb failoverip<br>&gt; &gt;&gt; &gt; order crhweb-after-failoverip inf: failoverip cweb<br>&gt; &gt;&gt; &gt; property $id=&quot;cib-bootstrap-options&quot; \<br>&gt; &gt;&gt; &gt;         dc-version=&quot;1.0.10-da7075976b5ff0bee71074385f8fd02f296ec8a3&quot; \<br>

&gt; &gt;&gt; &gt;         cluster-infrastructure=&quot;Heartbeat&quot; \<br>&gt; &gt;&gt; &gt;         stonith-enabled=&quot;false&quot; \<br>&gt; &gt;&gt; &gt;         no-quorum-policy=&quot;ignore&quot;<br>&gt; &gt;&gt; &gt; rsc_defaults $id=&quot;rsc-options&quot; \<br>

&gt; &gt;&gt; &gt;         resource-stickiness=&quot;100&quot;<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; _______________________________________________<br>&gt; &gt;&gt; Pacemaker mailing list: <a href="mailto:Pacemaker@oss.clusterlabs.org" target="_blank">Pacemaker@oss.clusterlabs.org</a><br>

&gt; &gt;&gt; <a href="http://oss.clusterlabs.org/mailman/listinfo/pacemaker" target="_blank">http://oss.clusterlabs.org/mailman/listinfo/pacemaker</a><br>&gt; &gt;&gt;<br>&gt; &gt;&gt; Project Home: <a href="http://www.clusterlabs.org/" target="_blank">http://www.clusterlabs.org</a><br>

&gt; &gt;&gt; Getting started: <a href="http://www.clusterlabs.org/doc/Cluster_from_Scratch.pdf" target="_blank">http://www.clusterlabs.org/doc/Cluster_from_Scratch.pdf</a><br>&gt; &gt;&gt; Bugs:<br>&gt; &gt;&gt; <a href="http://developerbugs.linux-foundation.org/enter_bug.cgi?product=Pacemake" target="_blank">http://developerbugs.linux-foundation.org/enter_bug.cgi?product=Pacemake</a><br>

&gt; &gt;&gt;r<br><br><br>_______________________________________________<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/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/doc/Cluster_from_Scratch.pdf</a><br>

Bugs: <a href="http://developerbugs.linux-foundation.org/enter_bug.cgi?product=Pacemaker" target="_blank">http://developerbugs.linux-foundation.org/enter_bug.cgi?product=Pacemaker</a><br></div></div></blockquote></div><br>

</div></div></blockquote></div><br>
</div></div><br>_______________________________________________<br>
Pacemaker mailing list: <a href="mailto:Pacemaker@oss.clusterlabs.org">Pacemaker@oss.clusterlabs.org</a><br>
<a href="http://oss.clusterlabs.org/mailman/listinfo/pacemaker" target="_blank">http://oss.clusterlabs.org/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/doc/Cluster_from_Scratch.pdf</a><br>
Bugs: <a href="http://developerbugs.linux-foundation.org/enter_bug.cgi?product=Pacemaker" target="_blank">http://developerbugs.linux-foundation.org/enter_bug.cgi?product=Pacemaker</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Dan Frincu<div>CCNA, RHCE</div><br>