Using NFS to Share CentOS Folders with Remote Linux and UNIX Systems

PreviousTable of ContentsNext
Displaying CentOS Applications Remotely (X11 Forwarding)Sharing CentOS Files with Remote Windows Systems


You are reading a sample chapter from the CentOS 5 Essentials Essentials book.

Purchase a copy of the fully updated CentOS 8 edition in eBook ($24.99) or Print ($36.99) format

CentOS 8 Essentials Print and eBook (ePub/PDF/Kindle) editions contain 31 chapters and over 260 pages. Learn more...

Buy Print Preview Book


CentOS provides two mechanisms for sharing files and folders with other systems on a network. One approach is to use technology called Samba. Samba is based on Microsoft Windows Folder Sharing and allows CentOS systems to make folders accessible to Windows systems, and also to access Windows based folder shares from CentOS. This approach can also be used to share folders between other Linux and UNIX based systems as long as they too have Samba support installed and configured. This is by far the most popular approach to sharing folders. The topic of folder sharing using Samba is covered in Sharing CentOS Folders with Remote Windows Systems.

Another option, which is targeted specifically at sharing folders between Linux and UNIX based systems, uses technology called Network File System (NFS). NFS allows the file system on one Linux computer to be accessed over a network connection by another Linux or UNIX system. NFS was originally developed by Sun Microsystems in the 1980s and remains the standard mechanism for sharing of remote Linux/UNIX file systems to this day.

NFS is very different to the Windows SMB resource sharing technology used by Samba. In this chapter we will be looking at network based sharing of folders between Linux based systems using NFS.

Ensuring NFS Services are Running on CentOS

The first task is to verify that the NFS services are installed and running on your CentOS system. This can be achieved either from the command line, or using the graphical services tool. Begin by confirming that the NFS service is installed by running the following command from a terminal window:

rpm –q nfs-utils

If the rpm command reports that the package is not yet installed, it may be installed using the yum command:

su –
yum install nfs-utils

To verify that the NFS services are running from the command-line, run the following command from a terminal window:

su -
/sbin/service nfs status
If the services are running you will see output similar to the following: 
rpc.mountd (pid 3617) is running...
nfsd (pid 3614 3613 3612 3611 3610 3609 3608 3607) is running...
rpc.rquotad (pid 3601) is running...
If the service is not running, invoke it using the following command: 
/sbin/service nfs start

To check on the status of NFS using the graphical services tool launch it from the System -> Administration -> Services menu option. When the tool loads, scroll down the list of services until you find NFS and click on it. The status of the service will be displayed. The following screenshot shows the NFS server running in the tool:

Enabling the NFS service on CentOS

Configuring the CentOS Firewall to Allow NFS Traffic

Next, the firewall needs to be configured to allow NFS traffic. To achieve this, run the Firewall Configuration tool by selecting the System -> Administration -> Security Level and Firewall menu option. If the firewall is enabled, make sure that the check box next to NFS4 is set and then click on Apply and OK.


Specifying the Folders to be Shared

Now that NFS is running and the firewall has been configured, we need to specify which parts of the file system may be accessed by remote Linux or UNIX systems. This can be achieved by directly editing files, or using the NFS Server Configuration GUI tool. In this section we will use the GUI tool to configure two folders to be shared, and then look at the system configuration file that was modified as an example of how to make these changes manually.

The GUI tool is called system-config-nfs and is not installed by default on most recent CentOS releases. To install this tool, open a terminal window (Applications -> System Tools -> Terminal) and enter the following commands:

su -
yum install system-config-nfs

Once installed, the NFS tool can be launched either from the System -> Administration -> Server Settings -> NFS menu option, or from the command-line:

system-config-nfs

Once this NFS configuration tool is installed and running the following screen should appear:


The CentOS NFS Configuration tool


In order to specify a folder to be exported for sharing via NFS to remote systems, click on the Add button in the toolbar. In the resulting Add NFS Share dialog enter the path to a directory you would like to share, either by typing in the path, or using the Browse button. For the purposes of this example, select the /tmp directory. We are going to make the /tmp directory of the local system available to all hosts, so enter a '*' in the Hosts field and change the basic permissions to Read/Write so that remote users can both read and write to files on our system. Click on OK to save the settings.

Repeat the above process to export a second directory of your choice, and this time specify the share as read only and allow only one host to access to the share by specifying the remote hostname or IP address.

The main screen of the configuration tool will now display as follows:


NFS shares configured on CentOS


To see how the tool has configured the system, we need to edit the /etc/exports file:

gedit /etc/exports

The file will contain the settings we specified in the configuration tool:

/tmp                           *(rw,sync)
/vol1                          192.168.2.21(ro,sync)

It is also possible to view the current share settings from the command-line using the exportfs tool:

/usr/sbin/exportfs

The above command will generate the following output:

/vol1           192.168.2.21
/tmp            <world>

Accessing Shared CentOS Folders

The shared folders may be accessed from a remote system either by mounting them manually from the command-line, or browsing to them using the File Browser. Keep in mind that it may also be necessary to configure the firewall on the remote system to allow NFS traffic.

To mount a remote folder from the command line, open a terminal window and create folder where you would like the remote folder to be mounted:

mkdir /home/demo/demo-folder

Next enter the command to mount to the remote folder (in this example we use centos as the remote hostname and /tmp as the remote path - modify these to match your environment):

su -
mount centos:/tmp /home/demo/demo-folder

The remote folder will then be mounted on the local system. Once mounted, the /home/demo/demo-folder will contain the remote folder and all its contents.

Mounting an NFS Filesystem on System Startup

It is possible to configure a CentOS system to automatically mount a remote file system each time the system starts up. This is achieved by editing the /etc/fstab file. To do this load the /etc/fstab file into your favorite editor as super user:

su -
gedit /etc/fstab

When loaded, it will likely look something like the following:

/dev/VolGroup00/LogVol00 /                       ext3    defaults        1 1
LABEL=/boot             /boot/                   ext3    defaults        1 2
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
/dev/VolGroup00/LogVol01 swap                    swap    defaults

To mount, for example, a folder with the path /tmp which resides on a system with the IP address 192.168.2.27 in the local folder with the path /nfsmount (note that this folder must already exist) add the following line to the fstab file:

192.168.2.27:/tmp /nfsmount nfs

Next time the system reboots the /tmp folder located on the remote CentOS system will be mounted on the local /nfsmount mount point. All the files in the remote folder can then be accessed as if they reside on the local hard disk drive.

Unmounting an NFS Mount Point

Once a remote file system is mounted using NFS it can be unmounted using the unmount command with the local mount point as the command-line argument. For example, to unmount our example filesystem mount point requires the use of the following command:

su -
umount /nfsmount


You are reading a sample chapter from the CentOS 5 Essentials Essentials book.

Purchase a copy of the fully updated CentOS 8 edition in eBook ($24.99) or Print ($36.99) format

CentOS 8 Essentials Print and eBook (ePub/PDF/Kindle) editions contain 31 chapters and over 260 pages. Learn more...

Buy Print Preview Book



PreviousTable of ContentsNext
Displaying CentOS Applications Remotely (X11 Forwarding)Sharing CentOS Files with Remote Windows Systems