Configure NFS Client2018/05/10 |
Configure NFS Client.
This example is based on the environment below. +----------------------+ | +----------------------+ | [ NFS Server ] |10.0.0.30 | 10.0.0.31| [ NFS Client ] | | dlp.srv.world +----------+----------+ client.srv.world | | | | | +----------------------+ +----------------------+ |
|
[1] | Configure NFS Client. |
root@client:~#
apt -y install nfs-common
root@client:~#
vi /etc/idmapd.conf # line 6: uncomment and change to your domain name Domain = srv.world
mount -t nfs dlp.srv.world:/home /home root@client:~# df -hT
Filesystem Type Size Used Avail Use% Mounted on
udev devtmpfs 1.9G 0 1.9G 0% /dev
tmpfs tmpfs 395M 600K 394M 1% /run
/dev/mapper/ubuntu--vg-root ext4 29G 1.7G 26G 7% /
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
tmpfs tmpfs 395M 0 395M 0% /run/user/0
dlp.srv.world:/home nfs4 29G 1.7G 26G 7% /home
# /home from NFS server is mounted
# if you'd like to mount with NFSv3, add '-o vers=3' option root@client:~# mount -t nfs -o vers=3 dlp.srv.world:/home /home
|
[2] | Configure NFS mounting on fstab to mount it when the system boot. |
root@client:~#
vi /etc/fstab # add like follows dlp.srv.world:/home /home nfs defaults 0 0 |
[3] | Configure auto-mounting if you need. For example, set NFS directory on /mntdir. |
root@client:~#
apt -y install autofs
root@client:~#
vi /etc/auto.master # add follows to the end /- /etc/auto.mount
root@client:~#
vi /etc/auto.mount # create new : [mount point] [option] [location] /mntdir -fstype=nfs,rw dlp.srv.world:/home # move to the mount point to verify it works normally root@client:~# cd /mntdir root@client:/mntdir# total 12 drwxr-xr-x 3 root root 4096 Apr 27 10:47 ./ drwxr-xr-x 24 root root 4096 May 10 12:39 ../ drwxr-xr-x 4 ubuntu ubuntu 4096 Apr 27 11:00 ubuntu/root@client:/mntdir# cat /proc/mounts | grep mntdir /etc/auto.mount /mntdir autofs rw,relatime,fd=6,pgrp=13749,timeout=300,minproto=5,maxproto=5, direct,pipe_ino=36330 0 0 dlp.srv.world:/home /mntdir nfs4 rw,relatime,vers=4.2,rsize=524288,wsize=524288,namlen=255, hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.0.0.31,local_lock=none,addr=10.0.0.30 0 0 |
Sponsored Link |