GlusterFS : クライアントの設定2017/06/21 |
GlusterFS ボリュームを任意のクライアントからマウントする場合の設定です。
|
|
[1] | GlusterFS Native でマウントする場合は、以下のように設定します。 |
root@client:~#
apt -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.4M 391M 2% /run /dev/mapper/debian--vg-root ext4 26G 983M 23G 5% / 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 236M 37M 187M 17% /boot tmpfs tmpfs 396M 0 396M 0% /run/user/0 node01.srv.world:/vol_distributed fuse.glusterfs 51G 2.0G 46G 5% /mnt |
[2] | NFS (v3) もサポートされているため、NFS マウントも可能です。 事前に GlusterFS サーバーで NFS 用の設定が必要です。 |
root@client:~#
apt -y install nfs-common
root@client:~#
root@client:~# systemctl enable rpcbind
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.4M 391M 2% /run /dev/mapper/debian--vg-root ext4 26G 986M 23G 5% / 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 236M 37M 187M 17% /boot tmpfs tmpfs 396M 0 396M 0% /run/user/0 node01.srv.world:/vol_distributed nfs 51G 2.0G 46G 5% /mnt |
Sponsored Link |
|