Redhat 配置autofs自动挂载LDAP用户目录

示例:
按照下述要求配置 autofs 用来自动挂载 DLAP 用户的主目录:
server.group8.example.com 通过 NFS 输出了 /rhome 目录到您的系统。这个文件系统包含了用户 thales 的主目录,并且已经预先配置好了。
1、thales 用户的主目录是 server.group8.example.com:/rhome/thales
2、thales 用户的主目录应该挂载到本地的/home/ldap/thales
3、用户对其主目录必须是读写的
4、thales 的登录密码是 redhat

[root@desktop ~]# yum install autofs -y
[root@desktop ~]# systemctl enable autofs
[root@desktop ~]# vim /etc/auto.master  -->编辑配置文件,看下面的截图
[root@desktop ~]# vim /etc/auto.ldap  -->在这个配置文件中写入下面这行代码
* -rw.sync.soft server.group8.example.com:/rhome/&
[root@desktop ~]# systemctl restart autofs  -->重启autofs服务
root@desktop ~]# su - thales 切换用户验证是否成功
[thales@desktop ~]$ pwd
/home/ldap/thales

Redhat 配置autofs自动挂载LDAP用户目录_第1张图片

你可能感兴趣的:(Redhat)