8a88dcd324
Configuring lockd to listen on a particular set of ports has always been an iffy proposition. We've tried for years to set it up so that you can configure it via /etc/sysconfig/nfs, but there are some cases where it may not get configured properly. If lockd is started via an nfs mount prior to starting the nfs-lock.service then it'll end up listening on a random, ephemeral port instead of the one configured. Instead of trying to do this, let's formally deprecate the LOCKD_TCPPORT and LOCKD_UDPPORT parameters in /etc/sysconfig/nfs. The version of it doesn't even have commented out versions of them anyway. Replace them with a note that tells admins that they should set up static ports in /etc/modprobe.d/lockd.conf. Add an /etc/modprobe.d/lockd.conf with a commented out options directive to make it easy for them to do so. Signed-off-by: Jeff Layton <jlayton@primarydata.com> Signed-off-by: Steve Dickson <steved@redhat.com>
34 lines
966 B
Plaintext
34 lines
966 B
Plaintext
#
|
|
# NOTE: the LOCKD_TCPPORT and LOCKD_UDPPORT parameters in this file are
|
|
# now deprecated. Those that need lockd to listen on a particular
|
|
# set of ports should configure /etc/modprobe.d/lockd.conf to do so.
|
|
#
|
|
# Optinal options passed to rquotad
|
|
RPCRQUOTADOPTS=""
|
|
#
|
|
# Optional arguments passed to rpc.nfsd. See rpc.nfsd(8)
|
|
RPCNFSDARGS=""
|
|
# Number of nfs server processes to be started.
|
|
# The default is 8.
|
|
RPCNFSDCOUNT=8
|
|
#
|
|
# Optional arguments passed to rpc.mountd. See rpc.mountd(8)
|
|
RPCMOUNTDOPTS=""
|
|
#
|
|
# Optional arguments passed to rpc.statd. See rpc.statd(8)
|
|
STATDARG=""
|
|
#
|
|
# Optional arguments passed to rpc.idmapd. See rpc.idmapd(8)
|
|
RPCIDMAPDARGS=""
|
|
#
|
|
# Optional arguments passed to rpc.gssd. See rpc.gssd(8)
|
|
RPCGSSDARGS=""
|
|
# Enable usage of gssproxy. See gssproxy-mech(8).
|
|
GSS_USE_PROXY="no"
|
|
#
|
|
# Optional arguments passed to rpc.svcgssd. See rpc.svcgssd(8)
|
|
RPCSVCGSSDARGS=""
|
|
#
|
|
# Optional arguments passed to blkmapd. See blkmapd(8)
|
|
BLKMAPDARGS=""
|