View previous topic :: View next topic |
Author |
Message |
molletts Tux's lil' helper
Joined: 16 Feb 2013 Posts: 131
|
Posted: Sat Jul 06, 2024 10:46 am Post subject: NFSD: Unable to initialize client recovery tracking! |
|
|
Hi,
If I do not set CONFIG_NFSD_LEGACY_CLIENT_TRACKING in my kernel config (it is listed as deprecated), I get the following error in the kernel messages when nfsd starts:
Code: | NFSD: Unable to initialize client recovery tracking! (-110) |
Apparently, the correct way to resolve this (i.e. not simply turning legacy client tracking methods back on) is to have nfsdcld running.
I can't see any reference to it in any of the installed openrc init scripts on my system. Should it not be started by /etc/init.d/nfs?
I'm running ~amd64 with a kernel built from sys-kernel/gentoo-sources-6.9.8.
Regards,
Stephen |
|
Back to top |
|
|
nicop Tux's lil' helper
Joined: 10 Apr 2014 Posts: 105
|
Posted: Sun Jul 07, 2024 10:52 pm Post subject: |
|
|
I had to create a basic init file for my part :
Code: | #!/sbin/openrc-run
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="nfsdcld"
description="NFSv4 Client Tracking Daemon"
command=/usr/sbin/nfsdcld |
|
|
Back to top |
|
|
salahx Guru
Joined: 12 Mar 2005 Posts: 559
|
|
Back to top |
|
|
|