分享

NFSv4

 richsky 2012-05-06

NFSv4

Jump to: navigation, search

i18n


Dansk – English – Espa?ol – Hrvatski – Indonesia – Italiano – Lietuvi?kai – Magyar – Nederlands – Polski – Português – Slovensky – Svenska – ?esky – Ελληνικ? – Български – Русский – Српски – Укра?нська – ????? – ??? – 日本語 – 正體中文 – 简体中文 – ???

Tango-two-arrows.png This article or section is a candidate for merging with Nfs.
Notes: please use the second argument of the template to provide more detailed indications. (Discuss)
Tango-two-arrows.png

NFSv4, Network File System version 4, is the new version of NFS (for setting up the older NFSv3, see Nfs) with new features like strong authentication and integrity via Kerberos and SPKM-3, improved performance, safe file caching, lock migration, UTF-8, ACLs and better support for Windows file sharing semantics.

This article covers installing and configuring NFSv4.

Contents

 [hide

Installing

Both client and servers require the nfs-utils package. Install nfs-utils with pacman.

Configuring

Server

The server configuration is very thorough.

Exports

First, we will need to edit our exports in /etc/exports.

A typical NFSv4 export would look like this:

/export    192.168.0.12(rw,fsid=0,no_subtree_check,async,no_root_squash)
/export/music 192.168.0.12(rw,no_subtree_check,async,no_root_squash)
Note: The fsid=0 is required for the root filesystem being exported.
Note: To allow ranges of addresses, the old-style 192.168.0.*-scheme is no longer supported with NFSv4. Use 192.168.0.0/24 or similar to specify such exports. (This did work with non-nfs4-exports, and no longer does. The error reported is "no such file or directory" when mounting, which makes troubleshooting a pain.)

/export is the NFS root here (due to the fsid=0 entry). Everything else that you want to be shared over NFS must be accessible under /export.

Note: Setting an NFS root seems to be required.

For exporting directories outside the NFS root, see below.

Note: The no_root_squash option means that root on the client is also considered root on the server. This is of course a security risk. Remove it if you do not need it.
Exporting directories outside your NFS root

To do this, you will need to use bind mounts. For example, to bind /home/john to /export/john:

# mount --bind /home/john /export/john

Then, /export/john needs to be added to /etc/exports:

/export    192.168.0.12(rw,fsid=0,no_subtree_check,async,no_root_squash)
/export/music 192.168.0.12(rw,no_subtree_check,async,no_root_squash)
/export/john 192.168.0.12(rw,no_subtree_check,async,no_root_squash,nohide)

The nohide option is required, because the kernel NFS server automatically hides mounted directories. To add the bind mount to /etc/fstab:

/home/john    /export/john    none    bind  0 0

ID mapping

Then, /etc/idmapd.conf needs to be edited. You'll need to at the very least specify your Domain there. Example:

[General]

Verbosity = 1
Pipefs-Directory = /var/lib/nfs/rpc_pipefs
Domain = 

[Mapping]

Nobody-User = nobody
Nobody-Group = nobody

Starting the server

To start the NFS server, just do:

# rc.d start rpcbind nfs-common nfs-server

If you want to tweak the configuration, feel free to edit /etc/conf.d/nfs-server.conf to fit your needs.

Client

The client configuration is more simple.

Client ID mapping

/etc/idmapd.conf needs to be edited on all clients and the Domain entry should be identical to the one on the server. Example:

[General]

Verbosity = 1
Pipefs-Directory = /var/lib/nfs/rpc_pipefs
Domain = 

[Mapping]

Nobody-User = nobody
Nobody-Group = nobody

[Translation]
Method = nsswitch
Note: On a client only setup make sure rpc.idmapd is running. The nfs-common daemon usually auto-detects whether rpc.idmapd has to be started, but it might fail if there aren't any nfs4 mount entries in /etc/fstab or if /etc/exports is empty (which both might be the case if you are using autofs to mount the nfs4 shares). In this case set NEED_IDMAPD="yes" in /etc/conf.d/nfs-common.conf.

Mounting the partitions on the client

Tango-emblem-important.png The factual accuracy of this article or section is disputed.
Reason: please use the first argument of the template to provide a brief explanation. (Discuss)
Tango-emblem-important.png

On the client, to mount the NFSv4 partition: Make sure that nfs module is loaded. (lsmod | grep nfs). If not execute the next command "modprobe nfs"

# /etc/rc.d/rpcbind start
# /etc/rc.d/nfs-common start
# mount -t nfs4 server:/ /mnt/server/
# mount -t nfs4 server:/music /mnt/music/
# mount -t nfs4 server:/john /mnt/john

Replacing 'server' with the hostname or IP address of your NFS server and of course 'server', 'music' and 'john' with the names of whatever directories you exported on the server.

If you want the NFS volumes to mount automatically on bootup, add them to fstab. For example:

server: /mnt/server nfs4 async,user 0 0

Remember to add netfs in the daemons array at /etc/rc.conf in order to mount nfs volumes at boot.

Note: the root of the path on the server is the NFS root specified; all paths must be specified relative to it.

Client & Server: Time Synchronization

In order for NFS to function properly, both server and client must have closely matching time values. If the clocks on the clients differ from the server too much, then basic functions like file copy operations may hang for a very long time leaving the system unusable until they resume. The clocks do not have to match to micro/nano second accuracies, but ideally they should be within 1 second of each other.

The NTP system is recommended to sync both the server and the clients to the highly accurate NTP servers available on the Internet. For a small system like a home network, the ntpdate utility may be used to sync both servers and clients to the same time. For a larger installation, it may be desirable to install an OpenNTP server (see NTP) onto the same machine acting as the NFS server, and then all clients on the network would sync time values from the server. This has the advantage of lowering the stress on the external NTP servers, and in assuring that the NFS clients will use the exact time that the NFS server has, even if the NFS server experiences some drift.

Troubleshooting

messages.log contains "nfsdopenone: Opening /proc/net/rpc/nfs4.nametoid/channel failed: errno 2 (No such file or directory)"

Add nfsd to /etc/rc.conf's MODULES array.

Note: You may need to add Verbosity = 3 to /etc/idmapd.conf and restart the services above to receive the error.

exportfs: /etc/exports:2: syntax error: bad option list

Delete all space from the option list in /etc/exports

mount.nfs4: No such device

Check that you have loaded the nfs module

lsmod | grep nfs

and if previous returns empty or only nfsd-stuff, do

modprobe nfs

mount.nfs4: access denied by server while mounting

Check that the permissions on your client's folder are correct. Try using 755.

Permissions issues

If you find that you cannot set the permissions on files properly, make sure the user/group you are chowning are on both the client and server. If that does not help, try modifying these lines in /etc/conf.d/nfs-common.conf

# /etc/conf.d/nfs-common.conf

# Do you want to start the statd daemon? It is not needed for NFSv4.
NEED_STATD="no"

# Do you want to start the idmapd daemon? It is only needed for NFSv4.
NEED_IDMAPD="yes"

Restart the nfs-common daemon for the changes to take effect. I restarted all the other daemons as well, just to be sure.

Group/gid Permissions issues

If NFS shares mount fine, and are fully accessible to the owner, but not to group members; check the number of groups that user belongs to. NFS has a limit of 16 on the number of groups a user can belong to. If you have users with more then this, you need to enable the --manage-gids start-up flag for rpc.mountd on the NFS server.

/etc/conf.d/nfs-server.conf

# Options for rpc.mountd.
# If you have a port-based firewall, you might want to set up
# a fixed port here using the --port option.
# See rpc.mountd(8) for more details.

MOUNTD_OPTS="--manage-gids"

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多