<div dir="ltr"><div><div><div>So, it&#39;s up and running now.<br><br></div>Next step would be to configure ovirt to use the new gluster volume.<br><br>And for backups to be moved from linode to this area instead.<br><br></div>
Please note I only allocated 1 TB to glusterlv, and 100 GB to backuplv, This leave ~700 GB untouched for allocation where we need it.<br><br></div>&quot;It&#39;s better to grow then to show&quot; ... I just thought of that one, I know its bad. Sorry :-D<br>
<div><div><div><br>---<br><br>## The below commands are run on each machine, until otherwise is stated<br><br># find wwid of sdb1<br>multipath -l<br><br># add wwid of sdb1 to multipath.conf to blacklist it<br>cat &gt;&gt; /etc/multipath.conf &lt;&lt;EOF<br>
blacklist {<br>      wwid 36848f690e6d9480019ac01600496584f<br>}<br>EOF<br><br># reload multipath<br>multipath -F<br>multipath -v2<br><br># Create a volume group so that we can administrate storage more efficiently<br>vgcreate datavg /dev/sdb1<br>
<br># One for gluster, one for backup<br>lvcreate -L 1T -n glusterlv datavg<br>lvcreate -L 100G -n backuplv datavg<br><br># Create filesystems on both<br>mkfs.ext4 /dev/disk/by-id/dm-name-datavg-backuplv <br>mkfs.ext4 /dev/disk/by-id/dm-name-datavg-glusterlv <br>
<br># Create directories to mount at<br>mkdir /srv/gluster /srv/backup<br><br># Find UUID of new filesystems<br>blkid<br><br># Fix so that they mount on boot. <br>cat &gt;&gt; /etc/fstab &lt;&lt;EOF<br>UUID=&quot;69b0c4e5-ded7-4fc9-aa6f-03f6cc4f60c2&quot; /srv/gluster ext4 defaults 1 2<br>
UUID=&quot;4bae10e7-0d8e-477c-aa08-15f885bc52bd&quot; /srv/backup ext4 defaults 1 2<br>EOF<br><br># Mount it!<br>mount -a<br><br># Start gluster<br>service glusterd start<br><br># Enable on boot<br>chkconfig glusterd on<br>
<br># Add other node<br>gluster peer probe rackspace02.ovirt org<br><br># Verify<br>gluster peer status<br><br><br>## Only execute on one node<br>gluster volume create vmstorage replica 2 transport tcp rackspace01.ovirt.org:/srv/gluster rackspace02.ovirt.org:/srv/gluster<br>
gluster volume start vmstorage<br><br clear="all"><div><br>-- <br>/Alexander Rydekull
</div></div></div></div></div>