FedFsNfsDomainRoot0.8

From Linux NFS

Revision as of 18:04, 24 October 2012 by Chucklever (Talk | contribs)
Jump to: navigation, search

Contents

Project: fedfs-utils

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


Introduction

A FedFS domain root directory is the top-level directory of a FedFS domain. It is what is visible when a FedFS-enabled client mounts the top of a FedFS domain name space. Typically a FedFS-enabled NFS client mounts the directory at /nfs4/fedfs-domain-name .

A FedFS domain root usually contains nothing but junctions that refer clients to file servers that hold more interesting content, like user directories. The domain root is simply a starting point for accessing the rest of a domain's name space.

This article describes an easy way to set up a FedFS domain root on a recent vintage Linux NFS server.

Select one or more NFS servers to host the domain root export

The domain root directory typically sees little traffic, particularly since an individual domain root directory contains little data. However, clients depend on the domain root directory being available to access all other files in a FedFS domain. A server with high availability is recommended for this role.

The NFS server you choose for this role can host the domain root directory for more than one FedFS domain. It can export other filesystems as well.

Several servers can play host to the same domain root export, as long as there is a mechanism for keeping the content of the domain root export precisely in sync across all the NFS servers. The DNS SRV format which is used by clients to find FedFS domain root directories can list one or more servers as a FedFS domain's root directory server.

Once you have chosen an NFS server, set it up as a FedFS enabled NFS server.

Create the domain root export and directories

FedFS-enabled clients use a well-known export pathname when contacting the NFS server that exports a FedFS domain root. That pathname is /.domainroot-fedfs-domain-name .

Create a physical directory on your domain root fileserver for each domain root you export. For example, if you want to create the domain root directory for the "example.net" FedFS domain, use the following commands:

# mkdir /.domainroot-example.net
# chmod 755 /.domainroot-example.net

Read about how to add content to your FedFS domain root directory in How to set up NFS referrals using the nfsref command.

Export the domain root directory

A separate line in /etc/exports must be added for each FedFS domain root directory. Continuing the above example for the example.net domain, prepare to export it by adding this line to /etc/exports:

/.domainroot-example.net  *(ro,insecure)

This makes the export readable by all NFS clients. NFS clients should not be allowed to write these directories, particularly because there is no mechanism in the NFS protocol that can create a junction. They must be created locally on the NFS server. Of course, you can restrict access to it or add other export options here as needed. See the exports(5) man page for more information.

If there is already an NFS service running on this host, update the kernel exports list with the following command:

# exportfs -rv

Otherwise, if there is no NFS service running yet, start one:

# systemctl enable nfs-server.service
# systemctl start nfs-server.service
Personal tools