NFS mounting concept in linux

No comments
This guide explains how to configure an NFS server in Ubuntu 14.10 Network File System (NFS) is a popular distributed filesystem protocol that enables users to mount remote directories on their server. The system lets you leverage storage space in a different location and write onto the same space from multiple servers in an effortless manner. It, thus, works fairly well for directories that users need to access frequently. This tutorial explains the process of mounting NFS share on an Ubuntu 14.10 server in an simple and easy-to-follow steps.

1 Preliminary Note

I have fresh installed Ubuntu 14.10 server, on which I am going to install the NFS server. My Ubuntu server have hostname server1.example.com and IP as192.168.0.100
You can have your Ubuntu server installed from the tutorial. Alternatively we need a Ubuntu 14.10 client machine either server/desktop. I my case I will use an Ubuntu 14.10 desktop with hostname  client1.example.com and IP as  192.168.0.101

2 At NFS server end

Now we will install these packages at the Ubuntu 14.10 server end as:
apt-get update
apt-get install nfs-kernel-server
Now the configuration part will include as:
mkdir /var/nfsshare
Change the ownership of the folder as follows:
chown nobody:nogroup /var/nfsshare
We have used /var/nfsshare as, if we uses any other drive such as any /home directory then it will cause a massive permissions problem and ruin the whole hierarchy. If in case we want to share the /home directory then permissions must not be changed.
Now we will share the NFS directory over the network a follows:
nano /etc/exports
We will make two sharing points  /home and /var/nfs. Edit it as follows:
[...]
/var/nfsshare    192.168.0.101(rw,sync,no_subtree_check)
/home            192.168.0.101(rw,sync,no_root_squash,no_subtree_check)
Note 192.168.0.101 is the IP of client machine, if you wish that any other client should access it you need to add the it IP wise other wise you can add "*" instead of IP for all IP access.
Condition is that it must be pingable at both ends.
Next we will update the NFS table with the new sharing points.
exportfs -a
Finally start the NFS service as follows:
service nfs-kernel-server start
Now we are ready with the NFS server part.

3 NFS client end

In my case I have the client as Ubuntu 14.10 desktop. Other Ubuntu versions will also work for the same. Install the packages as follows:
sudo apt-get update
sudo apt-get install nfs-common
Now create the NFS directory mount point as follows:
sudo mkdir -p /mnt/nfs/home
sudo mkdir -p /mnt/nfs/var/nfsshare
Next we will mount the NFS shared content in the client machine as shown below:
mount -t nfs 192.168.0.100:/home /mnt/nfs/home/
It will mount /home of NFS server. Next we will /var/nfsshare mount as follows:
 mount -t nfs 192.168.0.100:/var/nfsshare /mnt/nfs/var/nfsshare/
Now we are connected with the NFS share, we will crosscheck it as follows:
mount -t nfs
root@client1:~# mount -t nfs
192.168.0.100:/home on /mnt/nfs/home type nfs (rw,vers=4,addr=192.168.0.100,clientaddr=192.168.0.101)
192.168.0.100:/var/nfsshare on /mnt/nfs/var/nfsshare type nfs (rw,vers=4,addr=192.168.0.100,clientaddr=192.168.0.101)
root@client1:~#
So we are connected with NFS share.
Now we will check the read/write permissions in the shared path. At client enter the command:
touch /mnt/nfs/var/nfsshare/test_nfs
Next check the permissions of the file created there.
ls -l /mnt/nfs/var/nfsshare/
root@client1:~# ls -l /mnt/nfs/var/nfsshare/
total 0
-rw-r--r-- 1 nobody nogroup 0 Nov 25 11:33 test_nfs
root@client1:~#
File created have permissions as nobody/nogroup as updated over the NFS-server end.

No comments :

Post a Comment