CentOS 7
Sponsored Link

GlusterFS 6 : GlusterFS クライアントの設定2019/05/30

 
GlusterFS ボリュームを任意のクライアントからマウントします。
[1] GlusterFS Native でマウントする場合は、以下のように設定します。
例として [vol_distribute] ボリュームを [/mnt] にマウントします。
[root@client ~]#
yum -y install centos-release-gluster6
[root@client ~]#
sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/CentOS-Gluster-6.repo
[root@client ~]#
yum --enablerepo=centos-gluster6 -y install glusterfs glusterfs-fuse
# 宛先はボリューム構成ノードであればどこでも可

[root@client ~]#
mount -t glusterfs node01.srv.world:/vol_distributed /mnt

[root@client ~]#
df -hT

Filesystem                        Type            Size  Used Avail Use% Mounted on
/dev/mapper/centos-root           xfs              26G  1.4G   25G   6% /
devtmpfs                          devtmpfs        3.9G     0  3.9G   0% /dev
tmpfs                             tmpfs           3.9G     0  3.9G   0% /dev/shm
tmpfs                             tmpfs           3.9G  8.5M  3.9G   1% /run
tmpfs                             tmpfs           3.9G     0  3.9G   0% /sys/fs/cgroup
/dev/vda1                         xfs            1014M  250M  765M  25% /boot
tmpfs                             tmpfs           799M     0  799M   0% /run/user/0
node01.srv.world:/vol_distributed fuse.glusterfs   52G  3.2G   49G   7% /mnt
関連コンテンツ