NFS経由でユーザーのホームディレクトリをマウントするためにautofsをインポートするのに問題があります。 NFSクライアント(client.home)とNFSサーバー(server.home)があります。どちらのシステムもCentOS 7.4です。 SELinux は両方のシステムで許可モードで実行されます。ユーザーのホームディレクトリを自動的にマウントできるように正しい方向を知らせる人はいますか?
サーバーのNFSエクスポートテーブル
[root@server ~]# exportfs -v
/home/tim
client.home(rw,sync,wdelay,hide,no_subtree_check,sec=sys,secure,root_squash,no_all_squash)
クライアントはこれらのエクスポートを表示できます。
[root@client ~]# showmount -e server
Export list for server:
/home/tim client.home
2人のユーザーがいます。 1つはクライアントに、もう1つはサーバーにあります。名前とUIDは同じです。しかし、ユーザーのホームディレクトリはserver.home
。
[tim@server ~]$ id
uid=1001(tim) gid=1001(tim) groups=1001(tim)
context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
-bash-4.2$ hostname
client.home
-bash-4.2$ id
uid=1001(tim) gid=1001(tim) groups=1001(tim)
context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
tim
このディレクトリはのユーザーに対して自動的にマウントする必要がありますclient.home
。残念ながら、そのようなことは起こらないようです。
[root@client ~]# su - tim
-bash-4.2$ id
uid=1001(tim) gid=1001(tim) groups=1001(tim)
context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
-bash-4.2$ cd /home/tim
-bash: cd: /home/tim: No such file or directory
-bash-4.2$ ls /home
vagrant
auto.master
それにもかかわらず、私はファイルが正しく設定されていると思います。
[root@client ~]# cat /etc/auto.master
#
# Sample auto.master file
# This is a 'master' automounter map and it has the following format:
# mount-point [map-type[,format]:]map [options]
# For details of the format look at auto.master(5).
#
/misc /etc/auto.misc
#
# NOTE: mounts done from a hosts map will be mounted with the
# "nosuid" and "nodev" options unless the "suid" and "dev"
# options are explicitly given.
#
/net -hosts
#
# Include /etc/auto.master.d/*.autofs
# The included files must conform to the format of this file.
#
+dir:/etc/auto.master.d
#
# Include central master map if it can be found using
# nsswitch sources.
#
# Note that if there are entries for /net or /misc (as
# above) in the included master map any keys that are the
# same will not be seen as the first read key seen takes
# precedence.
#
+auto.master
/home /etc/auto.home
そして私のコンテンツ/etc/auto.home
[root@client /]# cat /etc/auto.home
* nfs4,rw &:/home/&
私はcd
ユーザーのホームディレクトリに簡単に入ることができることを願っています。autofs.service
代わりに実行するとき/home
。
[root@client /]# systemctl is-active autofs
active
[root@client /]# touch /home/test
touch: cannot touch ‘/home/test’: Permission denied
[root@client home]# ll -d /home
drwxr-xr-x. 2 root root 0 Sep 16 02:04 /home
[root@client /]# systemctl stop autofs
[root@client /]# systemctl is-active autofs
inactive
[root@client /]# touch /home/test
[root@client /]# ls /home
test vagrant
編集する:
NFS共有を手動でマウントできます。また、以前に発生した奇妙な権限の問題は、root_squash
ファイルに設定したオプションが原因であると確信しています/etc/exports
。
[root@client ~]# mount -t nfs4 -o rw server.home:/home/tim /mnt
[root@client ~]# df -t nfs4
Filesystem 1K-blocks Used Available Use% Mounted on
server.home:/home/tim 39269760 1192448 38077312 4% /mnt
[root@client ~]# ll -d /mnt
drwx------. 2 tim tim 86 Sep 16 18:51 /mnt
ベストアンサー1
私はそれについて考えた。/etc/auto.master
クライアントで編集する必要があるときにサーバーで編集しています。つまり、クライアント側に次の内容を追加します。/etc/auto.master
/home/ /etc/auto.home
それでもクライアントで/etc/auto.home
ファイルを作成し、次の内容を追加します。
* -nfs4,rw &:/home/&
最後に、autofsを再起動します(クライアントから)。
$ systemctl restart autofs
そうするのがいいですね。クライアントのユーザーはサーバーのユーザーと同じでなければなりません(同じユーザー名、同じUID)。これは通常、LDAPを使用して行われます。また、autofsはクライアントにマウントポイントを作成するため、ホームディレクトリはサーバーにのみ存在する必要があります。