centos6.5 挂载远程目录

 

 

查看nfs程序是否安装:

[root@crawler_mv02 ~]# rpm -qa |grep rpcbind
rpcbind-0.2.0-13.el6_9.1.x86_64
[root@crawler_mv02 ~]# rpm -qa |grep nfs
nfs-utils-1.2.3-75.el6.x86_64
nfs-utils-lib-1.1.5-13.el6.x86_64

如果没有安装,则安装:

yum install nfs-utils
yum install rpcbind

修改配置:

[root@crawler_mv02]# vim /etc/exports

/root 192.168.1.100(rw,sync,no_root_squash)

重启nfs时如果出错:

出现这个问题,需要先启动或重启rpcbind:

重启rpcbind之后再重启nfs:

 

执行挂载命令:

mount -t nfs ip:/remoteDir dir/
查看挂载:mount |tail -2
卸载: umount -v 加上客户端的路径

 

posted on 2017-06-21 16:23  jessezeng  阅读(273)  评论(0编辑  收藏  举报

导航