标签:
nfs,网络文件系统,用于类UNIX系统间的文件共享。
1.nfs的安装
yum install nfs-utils
安装时会自动安装rpcbind软件,rpcbind是一个RPC服务,主要任务是在nfs共享时负责通知客户端,服务器的nfs端口号
2.NFS的常用目录
a. 输出目录:
输出目录是指NFS系统中需要共享给客户机使用的目录;
b. 客户端:
客户端是指网络中可以访问这个NFS输出目录的计算机
客户端常用的指定方式
c. 选项:
选项用来设置输出目录的访问权限、用户映射等。
NFS主要有3类选项:
访问权限选项
用户映射选项
其它选项
例:/share 172.16.0.0/16(rw,root_squash,async)
4.NFS服务的启动
service rpcbind start
必须先启动rcpbind,否则nfs启动不起来。
service nfs start
chkconfig rpcbind on
chkconfig nfs on
挂载nfs设备:
mount -t nfs NFS_SERVER_NAME:/PATH/TO/SOMEWHERE /PATH/TO/SOMEWHERE
命令:
exportfs :maintain table of exported NFS file systems
-a:挂载所有“导出”目录
-r:重新挂载
-u:卸载
例:exportfs -ra (重新挂载所有)
exportfs -ua (卸载所有)
showmount :show mount information for an NFS server
-a:List both the client hostname or IP address and mounted directory
in host:dir format. This info should not be considered reliable.
-e:Show the NFS server’s export list.
-d:List only the directories mounted by some client.
标签:
原文地址:http://www.cnblogs.com/yangxiaolan/p/4767164.html