一、安装
yum install -y nfs-utils rpcbind
二、配置
vi /etc/exports
/nfsdir 192.168.2.1/24(rw,sync,no_root_squash)
三、设置开机启动服务
chkconfig rpcbind on
chkconfig nfs on
四、挂载命令
mount -t nfs -o nolock 192.168.2.98:/nfsdir /mnt
默认的这种是以udp协议挂载,有时候以这种方式挂载传输比较大的数据时会出现
“nfs: server 192.168.2.98 not responding, still trying”这种情况,因为udp是不可靠的连接,
传输大数据时会有丢包现象,解决这种现象是以tcp协议连接:
mount -t nfs -o nolock,tcp 192.168.2.98:/nfsdir /mnt
阅读(3199) | 评论(0) | 转发(1) |