Setting up shared volume using GlusterFS on centos 7
I come to this solution due to one of my requirement in which i wanted to setup shared volume for my two node KVM virtual server node. I wanted to make a shared volume storage pool on both KVM node so that i can migrate VM between nodes. Normally this design is for ovirt HA cluster. My setup was not intended to work as HA cluster but a manual cluster to move VM from one host node to another. This setup is also usefull in case you need to setup any multimaster solution in which you dont want to use NFS and need data redundancy. So here is the setup - I have two nodes VM1 and VM2 each with a partition /dev/vdb1 of 5GB size I created one mount point for both VM /gb1 and mounted the partition on this mount point # mkfs.xfs /dev/vdb1 # mount /dev/vdb1 /gb1 Above practice needs to be ...