您的位置:首页 > 运维架构 > Linux

NFS服务配置与mount nfs时-o nolock的问题

2015-09-09 22:51 561 查看
1.创建共享目录

#mkdir /home/hellolinux/nfs

2.创建或修改/etc/exports文件

#vi /etc/exports

home/hellolinux/nfs 192.168.0.*(rw,sync,no_root_squash)

3.NFS服务的启动与停止

#service nfs start

#service nfs stop

#service nfs restart

#servcie nfs status(服务状态)

4 在客户机上查看NFS的资源共享情况

# showmount -e 192.168.0.1

Export list for 192.168.0.1:

/home/hellolinux/nfs 192.168.0.*

5 .使用mount命令挂栽共享资源

mount -t nfs -o nolock 192.168.0.1:/home/hellolinux/nfs /mnt/nfs

出现的问题与解决方法:

[root@FORLINX6410]# mount -t nfs 192.168.0.1:/home/hellolinux/rootfs /mnt/nfs

svc: failed to register lockdv1 RPC service (errno 111).

mount: mounting 192.168.0.1:/home/hellolinux/rootfs on /mnt/nfs failed: Connection refused

解决方案:

nfs mount 默认选项包括文件锁,依赖于portmap提供的动态端口分配功能。

解决方法:kill 文件锁(lockd)或者mount -o nolock

相关解答链接:

1.http://bbs.chinaunix.net/thread-2001083-1-1.html

2.http://blog.csdn.net/alex_xhl/article/details/7222602
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息