Hi,

Andreas Ntaflos wrote:
Hi, first time poster, short time Pacemaker user. I don't think this is a very difficult question to answer but I seem to be feeding Google the wrong search terms. I am using Pacemaker 1.0.8 and Corosync 1.2.0 on Ubuntu 10.04.1 Server.

Short version: How do I configure multiple independent two-node clusters where the nodes are all on the same subnet? Only the two nodes that form the cluster should see that cluster's resources and not any other.
Is this possible? Where should I look for more and detailed information?
You need to specify different multicast sockets for this to work. Under the /etc/corosync/corosync.conf you have the interface statements. Even if all servers are in the same subnet, you can "split them apart" by defining unique multicast sockets. An example should be useful. Let's say that you have only one interface statement in the corosync file.
       interface {
               ringnumber: 0
               bindnetaddr: 192.168.1.0
               mcastaddr: 239.192.168.1
               mcastport: 5405
       }
The multicast socket in this case is 239.192.168.1:5405. All nodes that should be in the same cluster should use the same multicast socket. In your case, the first two nodes should use the same multicast socket. How about the other two nodes? Use another unique multicast socket.
       interface {
               ringnumber: 0
               bindnetaddr: 192.168.1.0
               mcastaddr: 239.192.168.112
               mcastport: 5405
       }
Now the multicast socket is 239.192.168.112:5405. It's unique, the network address is the same, but you add this config (edit according to your environment, this is just an example) to your other two nodes. So you have cluster1 formed out of node1 and node2 linked to 239.192.168.1:5405 and cluster2 formed out of node3 and node4 linked to 239.192.168.112:5405.

This way, the clusters don't _see_ each other, so you can reuse the resource ID's and see only two nodes per cluster.

Regards,

Dan
------------------------------------------------------------------------

_______________________________________________
Pacemaker mailing list: Pacemaker@oss.clusterlabs.org
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://developerbugs.linux-foundation.org/enter_bug.cgi?product=Pacemaker

--
Dan FRINCU
Systems Engineer
CCNA, RHCE
Streamwide Romania

_______________________________________________
Pacemaker mailing list: Pacemaker@oss.clusterlabs.org
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://developerbugs.linux-foundation.org/enter_bug.cgi?product=Pacemaker

Reply via email to