Folks,
We have been hit with a recent Fedora Linux kernel bug rendering the built-in NFS server
unstable. After some web search I found this userspace replacement. Unfortunately, I am
unable to get the server to do anything useful, like export a filesystem. I've created
the following test config file:
EXPORT
{
Export_Id = 10;
Path = /srv/nfs/home;
Pseudo = /home;
Access_Type = RW;
Squash = no_root_squash;
}
LOG {
Default_Log_Level = DEBUG;
Facility {
name = FILE;
destination = "/var/log/ganesha/ganesha.log";
enable = active;
}
}
The service (called nfs-ganesha.service on Fedora) starts just fine and I see no errors of
any kind in the log file. But /srv/nfs/home is not exported. I've checked with
"ganesha_mgr show exports", which produces the following output:
Exports:
Id, path, nfsv3, mnt, nlm4, rquota,nfsv40, nfsv41, nfsv42, 9p, last
0, /, 0, 0, 0, 0, 0, 0, 0, 0, Sun Feb 21 12:51:38 2021, 642993774 nsecs
On a client, I cannot mount "servername:/home" (no such directory), only
"servername:/" (which is empty). Can anyone provide some guidance?