X
    Categories: Linux

Setting GFS2 partition for cluster usage in Redhat 5

let’s say the cluster name is “mynamran” and the shared storage device is mapped to /dev/mapper/mpath0

so the command to create GFS2 partition is as below :

mkfs.gfs2 -p lock_dlm -t mynamran:gfs2 -j 8 /dev/mapper/mpath0

then to test mount it .. to a /gfs2

mount -o acl -t gfs2 /dev/mapper/mpath0 /gfs2

any node which is members of “mynamran” cluster will be able to mount this
storage simultaneously ..

some other tools to test

gfs2_tool list
gfs2_tool df

woohoo..!

it shall however.. un-mounted before machine goes off.
hence.. is recommended putting this into /etc/fstab
current working setting is as below

/dev/mapper/mpath0      /gfs2                    gfs2 defaults,noatime,nodiratime 0 0

there option to actually mount the GFS2 partition via cluster suite..
but that probably for just the active node .. which somehow defeat the purpose.. of enabling it to actually having multiple node
accessing same storage.. without NFS.. :)

Namran Hussin: a soft spoken guy... with exceptional interest in computers and technology. I love to learn new thing and also love to break thing for the sake of learning.. but I do abide to the self-imposed limitation or certain thing such as social thing in life, thing can be done and thing that must be avoided at whatever cost such as drug,illegal tracking, smoke,illicit activity..etc.muahahaha let's share what we had in this short term of the life.! make it worth of the living.~
Related Post
Leave a Comment