Ubuntu 16.04
Sponsored Link

GlusterFS : クライアントの設定2016/06/05

 
GlusterFS ボリュームを任意のクライアントからマウントする場合の設定です。
[1] GlusterFS Native でマウントする場合は、以下のように設定します。
root@client:~#
apt-get -y install glusterfs-client
# vol_distributed ボリュームを /mnt にマウント

# 宛先はボリューム構成ノードであればどこでも可

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           396M  5.6M  390M   2% /run
/dev/mapper/ubuntu--vg-root       ext4             25G  1.8G   22G   8% /
tmpfs                             tmpfs           2.0G     0  2.0G   0% /dev/shm
tmpfs                             tmpfs           5.0M     0  5.0M   0% /run/lock
tmpfs                             tmpfs           2.0G     0  2.0G   0% /sys/fs/cgroup
/dev/vda1                         ext2            472M  101M  347M  23% /boot
tmpfs                             tmpfs           100K     0  100K   0% /run/lxcfs/controllers
tmpfs                             tmpfs           396M     0  396M   0% /run/user/0
node01.srv.world:/vol_distributed fuse.glusterfs   50G  3.6G   44G   8% /mnt
[2] NFS (v3) もサポートされているため、NFS マウントも可能です。
事前に GlusterFS サーバーで NFS 用の設定が必要です
root@client:~#
apt-get -y install nfs-common
root@client:~#
systemctl enable rpcbind
root@client:~#
mount -t nfs -o mountvers=3 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     396M  5.6M  390M   2% /run
/dev/mapper/ubuntu--vg-root       ext4       25G  1.8G   22G   8% /
tmpfs                             tmpfs     2.0G     0  2.0G   0% /dev/shm
tmpfs                             tmpfs     5.0M     0  5.0M   0% /run/lock
tmpfs                             tmpfs     2.0G     0  2.0G   0% /sys/fs/cgroup
/dev/vda1                         ext2      472M  101M  347M  23% /boot
tmpfs                             tmpfs     100K     0  100K   0% /run/lxcfs/controllers
tmpfs                             tmpfs     396M     0  396M   0% /run/user/0
node01.srv.world:/vol_distributed nfs        50G  3.6G   44G   8% /mnt
関連コンテンツ