Debian 8 Jessie
Sponsored Link

NFSクライアントの設定2015/05/05

 
NFS クライアントの設定です。ここでは以下のような環境を例に設定をします。
+----------------------+          |          +----------------------+
| [    NFS Server    ] |10.0.0.30 | 10.0.0.31| [    NFS Client    ] |
|     dlp.srv.world    +----------+----------+   client.srv.world   |
|                      |                     |                      |
+----------------------+                     +----------------------+

[1] NFSクライアントの設定です。
root@client:~#
aptitude -y install nfs-client
root@client:~#
vi /etc/idmapd.conf
# 6行目:コメント解除しドメイン名変更

Domain =
srv.world
root@client:~#
mount -t nfs dlp.srv.world:/home /home

root@client:~#
df -hT

Filesystem             Type      Size  Used Avail Use% Mounted on
/dev/dm-0              ext4      142G  1.3G  133G   1% /
udev                   devtmpfs   10M     0   10M   0% /dev
tmpfs                  tmpfs     1.6G  8.6M  1.6G   1% /run
tmpfs                  tmpfs     4.0G     0  4.0G   0% /dev/shm
tmpfs                  tmpfs     5.0M     0  5.0M   0% /run/lock
tmpfs                  tmpfs     4.0G     0  4.0G   0% /sys/fs/cgroup
/dev/sda1              ext2      236M   33M  191M  15% /boot
dlp.srv.world:/home nfs4      142G  1.3G  133G   1% /home
# NFSサーバーのホームディレクトリがマウントされている
[2] システム起動時に NFSマウントするよう設定しておきます。
root@client:~#
vi /etc/fstab
# 最終行に追記:マウントするホームディレクトリをNFSサーバーのものに変更

dlp.srv.world:/home   /home  nfs     defaults        0       0
[3] マウントポイントへのアクセス時に動的に NFSマウントする場合は以下のように設定します。例として /mntdir に動的マウントするよう設定します。
root@client:~#
aptitude -y install autofs
root@client:~#
vi /etc/auto.master
# 最終行に追記

/-    /etc/auto.mount

root@client:~#
vi /etc/auto.mount
# 新規作成 : [マウントポイント] [オプション] [ロケーション]

/mntdir -fstype=nfs,rw  dlp.srv.world:/home

root@client:~#
mkdir /mntdir

root@client:~#
systemctl restart autofs

# マウントポイントへ移動して確認

root@client:~#
cd /mntdir

root@client:/mntdir#
total 8
drwxr-xr-x 2 debian debian 4096 May  1 22:55 debian
drwxr-xr-x 2 jessie jessie 4096 May  1 22:59 jessie

root@client:/mntdir#
cat /proc/mounts | grep mntdir

/etc/auto.mount /mntdir autofs rw,relatime,fd=6,pgrp=1774,timeout=300,minproto=5,maxproto=5,direct 0 0
dlp.srv.world:/home /mntdir nfs4 rw,relatime,vers=4.0,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,
port=0,timeo=600,retrans=2,sec=sys,clientaddr=10.0.0.214,local_lock=none,addr=10.0.0.30 0 0
関連コンテンツ