RHCE之配置autofs远程挂载远程服务器的家目录
Posted 肀肀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RHCE之配置autofs远程挂载远程服务器的家目录相关的知识,希望对你有一定的参考价值。
[[email protected] ~]# yum -y install autofs 安装包
[[email protected] ~]# vim /etc/auto.master 编辑配置文件
/misc /etc/auto.misc
/home/guests /etc/auto.zwx 写上监控目录和映射文件
[[email protected] ~]# vim /etc/auto.zwx 编辑映射文件
ldapuser1 -rw,sync classroom:/home/guests/ldapuser1 此处意思是如果在监控目录中发现ldapuser1的关键字,则挂载到classroom这台服务器上的/home/guests/ldapuser1
[[email protected] ~]# systemctl restart autofs.service 重启服务
[[email protected] ~]# systemctl enable autofs.service
[[email protected] ~]# ssh [email protected] 测试,发现登陆到远程服务器的家目录中呢!
[email protected]‘s password:
Last login: Fri Dec 1 21:24:22 2017 from localhost
[[email protected] ~]$
小提示!!!
[[email protected] ~]# vim /etc/auto.zwx 编辑映射文件的高级写法
* -rw,sync classroom:/home/guests/& 此种写法,更加灵活,* 和&是一对,,可以匹配任何词,如*若是ldapuser2 那&也是ldapuser2。是不是比前面写法更加高级!
以上是关于RHCE之配置autofs远程挂载远程服务器的家目录的主要内容,如果未能解决你的问题,请参考以下文章
Linux ❀ RHCE自研教学笔记 - Redhat 8.2 NFS服务教研笔记