Hello,

I'm trying to configure a 2 node cluster in ubuntu with cman + corosync + pacemaker (the use of cman is because it is recommended at pacemaker quickstart). In order to solve the split brain in the 2 node cluster I'm using qdisk. For fencing, I'm trying to use fence_scsi and in this point I'm having the problem. I have attached my cluster.conf.

xml <node id="/dev/block/8:33" type="normal" uname="/dev/block/8:33"/>
node myotis51
node myotis52
primitive cluster_ip ocf:heartbeat:IPaddr2 \
        params ip="155.54.211.167" \
        op monitor interval="30s"
property $id="cib-bootstrap-options" \
        dc-version="1.1.6-9971ebba4494012a93c03b40a2c58ec0eb60f50c" \
        cluster-infrastructure="cman" \
        stonith-enabled="false" \
        last-lrm-refresh="1366803979"

At this moment I'm trying just with an IP resource, but at the end I'll get LVM resources and dovecot server running in top of them.

The problem I have is that whenever I interrupt network traffic between my nodes (to check if quorum and fencing is working) the IP resource is started in both nodes of the cluster.

So it seems that node fencing configure at cluster.conf is not working for me. Then I have tried to configure as a stonith resource (since it is listed by sudo crm ra list stonith), so I have tried to include

primitive stonith_fence_scsi stonith:redhat/fence_scsi

The problem I'm having with this is that I don't know how to indicate params for the resource (I have tried params devices="...", params -d ..., but they are not accepted) and with this (default) configuration I get:

pr 24 14:39:14 myotis51 lrmd: [6759]: debug: on_msg_perform_op: add an operation operation monitor[5] on stonith_fence_scsi for client 6763, its parameters: crm_feature_set=[3.0.5] CRM_meta_timeout=[20000] to the operation list. Apr 24 14:39:14 myotis51 lrmd: [6759]: info: rsc:stonith_fence_scsi probe[5] (pid 10434) Apr 24 14:39:14 myotis51 lrmd: [10434]: ERROR: get_stonith_provider: No such device: redhat/fence_scsi Apr 24 14:39:14 myotis51 lrm-stonith: [10434]: ERROR: execra: No such legacy stonith device: redhat/fence_scsi Apr 24 14:39:14 myotis51 lrm-stonith: [10434]: debug: execra: stonith_fence_scsi_monitor returned -12 Apr 24 14:39:14 myotis51 lrmd: [6759]: WARN: Managed stonith_fence_scsi:monitor process 10434 exited with return code 7. Apr 24 14:39:14 myotis51 lrmd: [6759]: info: operation monitor[5] on stonith_fence_scsi for client 6763: pid 10434 exited with return code 7 Apr 24 14:39:14 myotis51 crmd: [6763]: debug: create_operation_update: do_update_resource: Updating resouce stonith_fence_scsi after complete monitor op (interval=0) Apr 24 14:39:14 myotis51 crmd: [6763]: info: process_lrm_event: LRM operation stonith_fence_scsi_monitor_0 (call=5, rc=7, cib-update=57, confirmed=true) not running

I'm trying to use fence_scsi because I'm planning to use a shared storage (accesed via scsi fibre channel) and I don't want to use CLVM (because I need lvm snapshots, not supported by clvm), so I need a fencing device avoiding to concurrently use the same scsi devices in both nodes.

Any idea on how to use fence_scsi? Or I could use any other fence/stonith device? Which one do you recommend?

--
Angel L. Mateo Martínez
Sección de Telemática
Área de Tecnologías de la Información
y las Comunicaciones Aplicadas (ATICA)
http://www.um.es/atica
Tfo: 868889150
Fax: 868888337
<?xml version="1.0"?>
<cluster config_version="4" name="popimap_pcmk">
    <totem token="111000" />
    <quorumd interval="3" tko="23" label="popimap_qdisk" votes="1" />
    <fence_daemon clean_start="0" post_fail_delay="0" post_join_delay="3"/>
    <clusternodes>
        <clusternode name="myotis51" nodeid="1" votes="1">
            <fence>
                <method name="scsi">
                    <device name="scsi_fence" nodename="myotis51" />
                </method>
            </fence>
            <unfence>
                <device name="scsi_fence" nodename="myotis51" action="on" />
            </unfence>
        </clusternode>
        <clusternode name="myotis52" nodeid="2" votes="1">
            <fence>
                <method name="scsi">
                    <device name="scsi_fence" nodename="myotis52" />
                </method>
            </fence>
            <unfence>
                <device name="scsi_fence" nodename="myotis52" action="on" />
            </unfence>
        </clusternode>
    </clusternodes>
    <fencedevices>
        <fencedevice agent="fence_scsi" name="scsi_fence" logfile="/tmp/fence_scsi.log" devices="/dev/sdc" />
    </fencedevices>
    <cman transport="udpu" expected_votes="3" />
</cluster>
_______________________________________________
Pacemaker mailing list: [email protected]
http://oss.clusterlabs.org/mailman/listinfo/pacemaker

Project Home: http://www.clusterlabs.org
Getting started: http://www.clusterlabs.org/doc/Cluster_from_Scratch.pdf
Bugs: http://bugs.clusterlabs.org

Reply via email to