服务端
1 修改/etc/exports,例如:
[root@test root]#vi /etc/exports
## Descriptions
# Syntax: SharePath allowIP
/home/test 10.10.129.31(rw,sync,all_squash,anonuid=501)
2 让配置生效
[root@test root]# exportfs -rv<CR>
exporting 10.10.129.31:/home/test
[root@test root]#
客户端
1 自动绑定,编辑/etc/fstab,例如:
[root@test root]# vi /etc/fstab
LABEL=/ / ext3 defaults 1 1
none /dev/pts devpts gid=5,mode=620 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
LABEL=/usr /usr ext3 defaults 1 2
LABEL=/var /var ext3 defaults 1 2
LABEL=/ITC /ITC ext3 defaults 1 2
/dev/cciss/c0d0p2 swap swap defaults 0 0
/dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner,kudzu 0 0
10.10.129.25:/home/test /home/test nfs rw 0 0
#Syntax: <ServerIP>:<ServerPath> <ClientPath> nfs rw 0 0
[root@test root]#
2 手动绑定
[root@test root]#mount -t nfs 10.10.129.31:/home/test /home/test
其他命令:
卸载所有共享目录
# exportfs -au
在客户机上查看NFS的资源共享情况
# showmount -e 192.168.102.47
重启NFS服务
# /etc/init.d/nfs-kernel-server restart
启动服务portmap,nfs
#/etc/rc.d/init.d/portmap start (or:#service portmap start)
#/etc/rc.d/init.d/nfs start (or:#service nfs start)
下面是一些NFS共享的常用参数:
ro 只读访问
rw 读写访问
sync 所有数据在请求时写入共享
async NFS在写入数据前可以相应请求
secure NFS通过1024以下的安全TCP/IP端口发送
insecure NFS通过1024以上的端口发送
wdelay 如果多个用户要写入NFS目录,则归组写入(默认)
no_wdelay 如果多个用户要写入NFS目录,则立即写入,当使用async时,无需此设置。
hide 在NFS共享目录中不共享其子目录
no_hide 共享NFS目录的子目录
subtree_check 如果共享/usr/bin之类的子目录时,强制NFS检查父目录的权限(默认)
no_subtree_check 和上面相对,不检查父目录权限
all_squash 共享文件的UID和GID映射匿名用户anonymous,适合公用目录。
no_all_squash 保留共享文件的UID和GID(默认)
root_squash root用户的所有请求映射成如anonymous用户一样的权限(默认)
no_root_squas root用户具有根目录的完全管理访问权限
anonuid=xxx 指定NFS服务器/etc/passwd文件中匿名用户的UID
anongid=xxx 指定NFS服务器/etc/passwd文件中匿名用户的GID