[SOLVED] nfs lock problems
I recently upgraded my development server from Mageia 2 Beta 2 to Mageia 2 final. After that, my embedded development board can no longer mount its rootfs via nfs. nfsd and portmap are running on the server and I can mount the exported fs from another Linux box running Mageia 1. This confirms the nfs server part is working fine. I managed to boot the dev board from another system and manually attempt the mount. Here is the error:
If I specify the nolock option to mount, it works fine:
This is the /etc/exports entry I am using:
What changed between Beta and final release that might explain this issue?
- Code: Select all
/ # mount 192.168.120.6:/exports/nfsroot-ccardwmx28js /mnt
svc: failed to register lockdv1 RPC service (errno 111).
mount: mounting 192.168.120.6:/exports/nfsroot-ccardwmx28js on /mnt failed: Connection refused
/ #
If I specify the nolock option to mount, it works fine:
- Code: Select all
/ # mount -o nolock 192.168.120.6:/exports/nfsroot-ccardwmx28js /mnt
/ #
This is the /etc/exports entry I am using:
- Code: Select all
/exports/nfsroot-ccardwmx28js *(rw,insecure,all_squash,async,no_subtree_check,anonuid=500,anongid=500)
What changed between Beta and final release that might explain this issue?