FedFsNfsAutomounter0.8

From Linux NFS

(Difference between revisions)
Jump to: navigation, search
(Install the FedFS program map)
Line 33: Line 33:
== Install the FedFS program map ==
== Install the FedFS program map ==
-
* [[FedFsUtilsBuild0.8|Installing or Building fedfs-utils-0.8]]
+
On Fedora 18, one package is needed to enable FedFS support on NFS clients:
-
=== Additional Info ===
+
# yum install fedfs-utils-client
-
On Fedora 18, you can install the fedfs-map-nfs4 program with:
+
If your distribution does not provide a fedfs-utils package, you need to build fedfs-utils-0.8 yourself:
-
# yum install fedfs-utils-client
+
* [[FedFsUtilsBuild0.8#Build_from_scratch|Installing or Building fedfs-utils-0.8]]
 +
 
 +
=== Additional Info ===
-
If your distribution does not provide a pre-packaged version of fedfs-utils, you can build it from scratch.  The program map is built in src/mount/fedfs-map-nfs4.  Install it with:
+
Instead of installing the whole package, you may choose to install just the program map.  The program map is built in src/mount/fedfs-map-nfs4.  Install it with:
  # install fedfs-utils-0.8/src/mount/fedfs-map-nfs4 /usr/sbin
  # install fedfs-utils-0.8/src/mount/fedfs-map-nfs4 /usr/sbin

Revision as of 17:58, 24 October 2012

Contents

Project: fedfs-utils

[ Project Home | News | Downloads | Docs | Mailing Lists | Source Control | Issues ]


Introduction

One goal of FedFS is to present applications with the same file namespace no matter what client instance they are running on. These consistent FedFS pathnames are called Globally Useful Names.

A Globally Useful Name begins with a top level directory named after the file-access protocol used to access files in that namespace. For NFS, that's /nfs4. Subdirectories of this directory are named after FedFS domains. They are mounted when someone on the local client changes into a directory under /nfs4 named after a corresponding FedFS domain.

Under /nfs4, you might see, for example, a corporate.example.com directory, a sales.example.com directory, and an engineering.example.com directory. Each of these directories contains the directories and data in its respective FedFS domain.

On Linux, an autofs program map is used to create the top level of the space of Global Useful Names (that is, the contents of the /nfs4 directory). Once the domain root directory of a FedFS domain is mounted, the Linux NFS client mounts the lower parts of each domain's namespace.

At this time, there is no way to allow an "ls" in /nfs4 to show possible FedFS domains. Autofs will unmount and remove idle directories in the /nfs4 directory automatically, so the /nfs4 directory often appears empty. Users and applications have to know the names of interesting FedFS domains in order to start populating the FedFS namespace on their clients.

Install autofs

Most recent distributions have a pre-built version of autofs installed by default. If you see the file /etc/auto.master on your clients, then autofs is already installed. If it is not yet installed, consult your distribution's system administration documentation for the steps needed to install and configure autofs.

Install nfs-utils

The automounter and program map use /sbin/mount.nfs to mount NFS servers. Consult your distribution's administrative documentation for instructions to install the nfs-utils package.

Install the FedFS program map

On Fedora 18, one package is needed to enable FedFS support on NFS clients:

  1. yum install fedfs-utils-client

If your distribution does not provide a fedfs-utils package, you need to build fedfs-utils-0.8 yourself:

Additional Info

Instead of installing the whole package, you may choose to install just the program map. The program map is built in src/mount/fedfs-map-nfs4. Install it with:

# install fedfs-utils-0.8/src/mount/fedfs-map-nfs4 /usr/sbin

Configure Autofs

Now that you have autofs working and the FedFS program map installed on your client, create the top level directory for the FedFS namespace:

 # mkdir /nfs4

Add the program map to /etc/auto.master by introducing this line:

 /nfs4    /usr/sbin/fedfs-map-nfs4

Restarting the autofs daemon or rebooting your client should be enough to complete the configuration.

Personal tools