Debian 11 Bullseye
Sponsored Link

GlusterFS 9 : GlusterFS クライアントの設定2021/08/25

 
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
udev                              devtmpfs        2.0G     0  2.0G   0% /dev
tmpfs                             tmpfs           394M  476K  393M   1% /run
/dev/mapper/debian--vg-root       ext4             28G  1.1G   26G   5% /
tmpfs                             tmpfs           2.0G     0  2.0G   0% /dev/shm
tmpfs                             tmpfs           5.0M     0  5.0M   0% /run/lock
/dev/vda1                         ext2            470M   48M  398M  11% /boot
tmpfs                             tmpfs           394M     0  394M   0% /run/user/0
node01.srv.world:/vol_distributed fuse.glusterfs   56G  2.8G   51G   6% /mnt

# 読み書き確認

root@client:~#
echo "Gluster write test" > /mnt/testfile.txt

root@client:~#
cat /mnt/testfile.txt

Gluster write test
関連コンテンツ