Xilinx Zynq Linux – Mount NFS Volume, Connection Refused, failed to register lockdv1 RPC service (errno 111)
You may have been having problems mounting an NFS volume on a Xilinx Zynq kernel build, perhaps mount fails with a ‘Connection Refused’ error message. If you check the /var/log/messages
cat /var/log/messages
Then you may see some entries like this:
Jan 10 21:22:34 zynq-zx3-starter user.warn kernel: svc: failed to register lockdv1 RPC service (errno 111).
If this is the case, then you may have to provide some extra option arguments to mount to get things working as follows:
mount -o port=2049,nolock,proto=tcp 192.168.0.11:/export /mnt/mymountpoint
I was having huge problems getting mount to work but this fixed things for me, thanks to all here for the tip!.
Thanks!
Thanks! Helped me too.
I needed to add “port=2049,nolock,proto=tcp” to options for nfs mounts in /etc/mtab
This needed when doing mount
on a box where ipv6 is primarily the protocol used,
where the mount is from a box where ip is primarily used.