1、mount挂载问题
$ mount -t nfs 192.168.1.2:/home/sc6138 /ah_test
svc: failed to register lockdv1 RPC service (errno 111).
mount: mounting 192.168.1.2:/home/sc6138 on /ah_test failed: Connection refused
将mount -t nfs 192.168.1.2:/home/sc6138 /ah_test
改为
mount -o nolock -t nfs 192.168.1.2:/home/sc6138 /ah_test
或
mount -o nolock 192.168.1.2:/home/sc6138 /ah_test
2、启动顺序问题( centos下)
service portreserve start
service nfslock start
service nfs start
3、查看共享目录:
showmount -e 127.0.0.1