Setting up clustered NFS

NFS v2/v3 has been successfully tested with exporting the same data/network share from multiple nodes in a CTDB cluster with correct file locking behaviour and lock recovery.

Also see Configuring NFS for CTDB clustering at samba.org for additional information.

Prereqs

Configure CTDB as above and set it up to use public ipaddresses.
Verify that the CTDB cluster works.

/etc/exports

Export the same directory from all nodes.
Make sure to specify the fsid export option so that all nodes will present the same fsid to clients.
Clients can get "upset" if the fsid on a mount suddenly changes.
Example /etc/exports :
  /gpfs0/data *(rw,fsid=1235)

/etc/sysconfig/nfs

This file must be edited to point statd to keep its state directory on shared storage instead of in a local directory.

We must also make statd use a fixed port to listen on that is the same for all nodes in the cluster.
If we don't specify a fixed port, the statd port will change during failover which causes problems on some clients.
(some clients are very slow to realize when the port has changed)

This file should look something like :
  NFS_HOSTNAME=ctdb
  STATD_PORT=595
  STATD_OUTGOING_PORT=596
  MOUNTD_PORT=597
  RQUOTAD_PORT=598
  LOCKD_TCPPORT=599
  LOCKD_UDPPORT=599
  STATD_HOSTNAME="$NFS_HOSTNAME -H /etc/ctdb/statd-callout -p 97"
  RPCNFSDARGS="-N 4"

You need to make sure that the lock manager runs on the same port on all nodes in the cluster since some clients will have "issues" and take very long to recover if the port suddenly changes.
599 above is only an example. You can run the lock manager on any available port as long as you use the same port on all nodes.

NFS_HOSTNAME is the dns name for the ctdb cluster and which is used when clients map nfs shares. This name must be in DNS and resolve back into the public ip addresses of the cluster.
Always use the same name here as you use for the samba hostname. RPCNFSDARGS is used to disable support for NFSv4 which is not yet supported by CTDB.

/etc/sysconfig/ctdb

Add the following line to /etc/sysconfig/ctdb :
  CTDB_MANAGES_NFS=yes
The CTDB_MANAGES_NFS line tells the events scripts that CTDB is to manage startup and shutdown of the NFS and NFSLOCK services.
With this set to yes, CTDB will start/stop/restart these services as required.

chkconfig

Since CTDB will manage and start/stop/restart the nfs and the nfslock services, you must disable them using chkconfig.
  chkconfig nfs off
  chkconfig nfslock off

Event scripts

CTDB clustering for NFS relies on two event scripts /etc/ctdb/events.d/60.nfs and /etc/ctdb/events.d/61.nfstickle.
These two scripts are provided by the RPM package and there should not be any need to change them.

IMPORTANT

Never ever mount the same nfs share on a client from two different nodes in the cluster at the same time!

The client side caching in NFS is very fragile and assumes/relies on that an object can only be accessed through one single path at a time.