July 2018
Intermediate to advanced
504 pages
11h 34m
English
The GlusterFS volume can be mounted manually by using the FUSE client. The verification procedure looks like this:
# yum install centos-release-gluster312 -y# yum install glusterfs-fuse -y# mkdir /mnt/gvol1# mount -t glusterfs storage.example.com:/gvol1 /mnt/gvol1
Create a sample of persistent data to be used later:
# echo "Persistent data on GlusterFS" > /mnt/gvol1/index.html
Verify that mount point is available and then unmount the storage:
# df -h /mnt/gvol1/Filesystem Size Used Avail Use% Mounted onstorage.example.com:/gvol1 38G 713M 37G 2% /mnt/gvol1# umount /mnt/gvol1