1.修改NFS服务配置文件
/etc/exports
比如:要将/home/nfs设置为nfs的目录,则需要修改/etc/exports这个文件
/home/nfs *(rw,no_root_squash,async)
其中:
* 表示所有IP都可访问
async 表示数据先写入内存,而不是直接写入硬盘
no_root_squash 表示如果登录者使用的是root,那么他对于这个目录具有root权限
2.启动NFS服务
需要关闭防火墙:/etc/rc.d/init.d/iptables stop
/etc/rc.d/init.d/portmap restart
/etc/rc.d/init.d/nfs restart
3.使用格式:
mount -t nfs Server_IP:Server_NFS_directory target_directory
阅读(1091) | 评论(0) | 转发(0) |