通过autofs自动挂载NFS文件系统
2011-06-24 TsengYia#126.com http://selinux.cublog.cn/
#################################################################
系统环境:
RHEL 6.0 [2.6.32-71.el6.i686]
软件环境:
rpcbind-0.2.0-8.el6.i686
nfs-utils-1.2.2-7.el6.i686
autofs-5.0.5-23.el6.i686
#################################################################
一、NFS服务器端
[root@localhost ~]# vi /etc/exports
/home 192.168.4.0/24(rw)
[root@localhost ~]# service rpcbind start
[root@localhost ~]# service nfs start
[root@localhost ~]# chkconfig rpcbind on
[root@localhost ~]# chkconfig nfs on
二、NFS客户端(autofs、automount)
[root@localhost ~]# vi /etc/auto.master
…… //省略其他内容
/opt/home /etc/auto.home
[root@localhost ~]# vi /etc/auto.home
* -rw,soft,intr 192.168.4.11:/home/& #//所有子目录
#或者
tsengyia -rw,soft,intr 192.168.4.11:/home/tsengyia #//单个子目录
[root@localhost ~]# service rpcbind start
[root@localhost ~]# service autofs start
[root@localhost ~]# chkconfig rpcbind on
[root@localhost ~]# chkconfig autofs on
[root@localhost ~]# ls /opt/home/tsengyia #//使用时自动挂载
公共的 模板 视频 图片 文档 下载 音乐 桌面
[root@localhost ~]# service autofs stop
[root@localhost ~]# ls /opt/home/tsengyia #//服务停止,或闲置300秒后自动卸载
ls: 无法访问/opt/home/tsengyia: 没有那个文件或目录
#################################################################
阅读(1348) | 评论(0) | 转发(0) |