Hi,
I'm having problems with the NFS changes from RC2 -> Release when I try to mount from macOS.
The first issue was that on my system all exports were marked "secure" (meaning, port has to be < 1024). Looking into the code, this is controlled by "allow_nonroot". However, there is no GUI checkbox that I could find and I had to
The second issue is I cannot mount NFS v3 shares since (I think) rpc.statd is not running. This is despite the fact that
Trying to run
When I remove the "-N" argument from
Thanks for any pointers!
I'm having problems with the NFS changes from RC2 -> Release when I try to mount from macOS.
The first issue was that on my system all exports were marked "secure" (meaning, port has to be < 1024). Looking into the code, this is controlled by "allow_nonroot". However, there is no GUI checkbox that I could find and I had to
midclt call nfs.update '{"allow_nonroot": true}'
. Is that expected?The second issue is I cannot mount NFS v3 shares since (I think) rpc.statd is not running. This is despite the fact that
/etc/default/nfs-common
says NEED_STATD=yes (oddly enough the rpc.idmapd is running, even though I thought I don't need it since this is not a KRB environment).Trying to run
systemctl start rpc-statd
fails with "rpc-statd.service: Can't open PID file /run/rpc.statd.pid (yet?) after start: Operation not permitted" in the log file. When I remove the "-N" argument from
/etc/default/nfs-common
STATDOPTS, rpc.statd does start and the v3 mount works. But I don't know enough about all of the NFS layers to say whether doing this is correct or not.Thanks for any pointers!