Using NFS to Share RHEL 5 Folders with Remote Linux and UNIX Systems

From Techotopia
Revision as of 20:15, 27 October 2016 by Neil (Talk | contribs) (Text replacement - "<table border="0" cellspacing="0"> " to "<table border="0" cellspacing="0" width="100%">")

Jump to: navigation, search
PreviousTable of ContentsNext
Displaying RHEL 5 Applications Remotely (X11 Forwarding)Sharing Files Between RHEL 5 and Windows Systems with Samba


You are reading a sample chapter from the RHEL 5 Edition book.

Purchase the fully updated Red Hat Enterprise Linux 8 (RHEL 8) Edition of this publication in eBook ($9.99) or Print ($36.99) format

Red Hat Enterprise Linux 8 Essentials Print and eBook (ePub/PDF/Kindle) editions contain 31 chapters and over 250 pages

Buy Print Preview Book


Red Hat Enterprise Linux 5 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 RHEL 5 systems to make folders accessible to Windows systems, and also to access Windows based folder shares from RHEL. 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 in heterogeneous network environments. The topic of folder sharing using Samba is covered in Sharing RHEL 5 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 RHEL and other UNIX/Linux based systems using NFS.


Contents


Ensuring NFS Services are Running on RHEL 5

The first task is to verify that the NFS services are installed and running on your RHEL 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 -> Server Settings -> 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:


RHEL service configuration tool indicating NFS service is running


Configuring the RHEL 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 RHEL 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 RHEL 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 RHEL NFS Server 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:


The RHEL NFS configuration tool listing configured shares


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 RHEL 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 Nautilus 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 rhel5 as the remote hostname and /tmp as the remote path - modify these to match your environment):

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

The remote /tmp 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 RHEL System Startup

It is also possible to configure a RHEL 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.21 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.21:/tmp /nfsmount nfs

Next time the system reboots the /tmp folder located on the remote RHEL 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 RHEL 5 Edition book.

Purchase the fully updated Red Hat Enterprise Linux 8 (RHEL 8) Edition of this publication in eBook ($9.99) or Print ($36.99) format

Red Hat Enterprise Linux 8 Essentials Print and eBook (ePub/PDF/Kindle) editions contain 31 chapters and over 250 pages

Buy Print Preview Book



PreviousTable of ContentsNext
Displaying RHEL 5 Applications Remotely (X11 Forwarding)Sharing Files Between RHEL 5 and Windows Systems with Samba