summaryrefslogtreecommitdiffstats
path: root/systemd/nfs.systemd.man
blob: 46b476a662c891a7d742d3fc3f34ed05c2cb4a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
.TH NFS.SYSTEMD 7
.SH NAME
nfs.systemd \- managing NFS services through systemd.
.SH SYNOPSIS
nfs-utils.service
.br
nfs-server.service
.br
nfs-client.target
.br
.I etc
.SH DESCRIPTION
The
.I nfs-utils
package provides a suite of
.I systemd
unit files which allow the various services to be started and
managed.  These unit files ensure that the services are started in the
correct order, and the prerequisites are active before dependant
services start.  As there are quite  few unit files, it is not
immediately obvious how best to achieve certain results.  The
following subsections attempt to cover the issues that are most likely
to come up.
.SS Configuration
The standard systemd unit files do not provide any easy way to pass
any command line arguments to daemons so as to configure their
behavior.  In many case such configuration can be performed by making
changes to
.I /etc/nfs.conf
or other configuration files.  When that is not convenient, a
distribution might provide systemd "drop-in" files which replace the
.B ExecStart=
setting to start the program with different arguments.  For example a
drop-in file
.B systemd/system/nfs-mountd.service.d/local.conf
containing
.RS
.nf
[Service]
EnvironmentFile=/etc/sysconfig/nfs
ExecStart=
ExecStart= /usr/sbin/rpc.mountd $RPCMOUNTDOPTS
.fi
.RE
would cause the
.B nfs-mountd.service
unit to run the
.I rpc.mountd
program using, for arguments, the value given for
.B RPCMOUNTDOPTS
in
.IR /etc/sysconfig/nfs .
This allows for seamless integration with existing configuration
tools.
.SS Enabling unit files
There are three unit files which are designed to be manually enabled.
All others are automatically run as required.  The three are:
.TP
.B nfs-client.target
This should be enabled on any host which ever serves as an NFS client.
There is little cost in transparently enabling it whenever NFS client
software is installed.
.TP
.B nfs-server.service
This must be enabled to provide NFS service to clients.  It starts and
configures the required daemons in the required order.
.TP
.B nfs-blkmap.service
The
.B blkmapd
daemon is only required on NFS clients which are using pNFS (parallel
NFS), and particularly using the
.B blocklayout
layout protocol.  If you might use this particular extension to NFS,
the
.B nfs-blkmap.service
unit should be enabled.
.PP
Several other units which might be considered to be optional, such as
.I rpc-gssd.service
are careful to only start if the required configuration file exists.
.I rpc-gssd.service
will not start if the
.I krb5.keytab
file does not exist (typically in
.IR /etc ).
.SS Restarting NFS services
Most NFS daemons can be restarted at any time.  They will reload any
state that they need, and continue servicing requests.  This is rarely
necessary though.
.PP
When configuration changesare make, it can be hard to know exactly
which services need to be restarted to ensure that the configuration
takes effect.  The simplest approach, which is often the best, is to
restart everything.  To help with this, the
.B nfs-utils.service
unit is provided.  It declares appropriate dependencies with other
unit files so that
.RS
.B systemctl restart nfs-utils
.RE
will restart all NFS daemons that are running.  This will cause all
configuration changes to take effect
.I except
for changes to mount options lists in
.I /etc/fstab
or
.IR /etc/nfsmount.conf .
Mount options can only be changed by unmounting and remounting
filesystem.  This can be a disruptive operation so it should only be
done when the value justifies the cost.  The command
.RS
.B umount -a -t nfs; mount -a -t nfs
.RE
should unmount and remount all NFS filesystems.
.SS Masking unwanted services
Rarely there may be a desire to prohibit some services from running
even though there are normally part of a working NFS system.  This may
be needed to reduce system load to an absolute minimum, or to reduce
attack surface by not running daemons that are not absolutely
required.
.PP
Three particular services which this can apply to are
.IR rpcbind ,
.IR idmapd ,
and
.IR rpc-gssd .
.I rpcbind
is not part of the
.I nfs-utils
package, but it used by several NFS services.  However it is
.B not
needed when only NFSv4 is in use.  If a site will never use NFSv3 (or
NFSv2) and does not want
.I rpcbind
to be running, the correct approach is to run
.RS
.B systemctl mask rpcbind
.RE
This will disable
.IR rpcbind ,
and the various NFS services which depend on it (and are only needed
for NFSv3) will refuse to start, without interfering with the
operation of NFSv4 services.  In particular,
.I rpc.statd
will not run when
.I rpcbind
is masked.
.PP
.I idmapd
is only needed for NFSv4, and even then is not needed when the client
and server agree to use user-ids rather than user-names to identify the
owners of files.  If
.I idmapd
is not needed and not wanted, it can be masked with
.RS
.B systemctl mask idmapd
.RE
.I rpc-gssd
is assumed to be needed if the
.I krb5.keytab
file is present.  If a site needs this file present but does not want
.I rpc-gssd
running, it can be masked with
.RS
.B systemctl mask rpc-gssd
.RE
.SH FILES
/etc/nfs.conf
.br
/etc/nfsmount.conf
.br
/etc/idmapd.conf
.SH SEE ALSO
.BR systemd.unit (5),
.BR nfs.conf (5),
.BR nfsmount.conf (5).