Ubuntu 22.04
Sponsored Link

GlusterFS : GlusterFS クライアントの設定2022/08/31

 
GlusterFS ボリュームを任意のクライアントからマウントします。
[1] GlusterFS Native でマウントする場合は、以下のように設定します。
例として [vol_distributed] ボリュームを [/mnt] にマウントします。
root@client:~#
apt -y install glusterfs-client
# 宛先はボリューム構成ノードであればどこでも可

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

Filesystem                        Type            Size  Used Avail Use% Mounted on
tmpfs                             tmpfs           393M 1016K  392M   1% /run
/dev/mapper/ubuntu--vg-ubuntu--lv ext4             27G  7.0G   19G  28% /
tmpfs                             tmpfs           2.0G     0  2.0G   0% /dev/shm
tmpfs                             tmpfs           5.0M     0  5.0M   0% /run/lock
/dev/vda2                         ext4            2.0G  126M  1.7G   7% /boot
tmpfs                             tmpfs           393M  4.0K  393M   1% /run/user/0
node01.srv.world:/vol_distributed fuse.glusterfs   54G   15G   37G  29% /mnt
関連コンテンツ