NFSサーバ側の設定の次はNFSクライアントの設定をしてマウントしてみます。
CentOS 7 NIS+NFS+autofsでhomeの共有 – NFSサーバの設定
https://www.rootlinks.net/2016/03/28/centos-7-nisnfsautofsでhomeの共有-nfsサーバの設定/
環境
- host01
- host02
NISサーバ,NFSサーバ
CentOS Linux release 7.2.1511 (Core)
Linux host01.rootlinks.net 3.10.0-327.10.1.el7.x86_64
NISクライアント,NFSクライアント
CentOS Linux release 7.2.1511 (Core)
Linux host02.rootlinks.net 3.10.0-327.10.1.el7.x86_64
- NFSのインストール
- /etc/idmapd.confの設定
- mountテスト
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
[root@host02 ~]# yum install nfs-utils (snip) Installed: nfs-utils.x86_64 1:1.3.0-0.21.el7_2 Dependency Installed: gssproxy.x86_64 0:0.4.1-7.el7 keyutils.x86_64 0:1.5.8-3.el7 libbasicobjects.x86_64 0:0.1.1-25.el7 libcollection.x86_64 0:0.6.2-25.el7 libevent.x86_64 0:2.0.21-4.el7 libini_config.x86_64 0:1.2.0-25.el7 libnfsidmap.x86_64 0:0.25-12.el7 libpath_utils.x86_64 0:0.2.1-25.el7 libref_array.x86_64 0:0.1.5-25.el7 libtalloc.x86_64 0:2.1.2-1.el7 libtevent.x86_64 0:0.9.25-1.el7 libverto-tevent.x86_64 0:0.2.5-4.el7 quota.x86_64 1:4.01-11.el7 quota-nls.noarch 1:4.01-11.el7 tcp_wrappers.x86_64 0:7.6-77.el7 Complete! |
/etc/idmapd.confのDomain=に自ドメインを設定します。
1 2 3 |
[root@host02 ~]# vi /etc/idmapd.conf [root@host02 ~]# grep Domain /etc/idmapd.conf Domain = rootlinks.net |
1 2 3 4 5 6 7 8 9 10 11 |
[root@host02 ~]# mount -t nfs host01:/nishome /mnt [root@host02 ~]# df -T Filesystem Type 1K-blocks Used Available Use% Mounted on /dev/mapper/centos-root xfs 18307072 1074768 17232304 6% / devtmpfs devtmpfs 1006532 0 1006532 0% /dev tmpfs tmpfs 1016780 0 1016780 0% /dev/shm tmpfs tmpfs 1016780 8728 1008052 1% /run tmpfs tmpfs 1016780 0 1016780 0% /sys/fs/cgroup /dev/sda1 xfs 508588 137088 371500 27% /boot tmpfs tmpfs 203356 0 203356 0% /run/user/0 host01:/nishome nfs4 47969792 2209792 45760000 5% /mnt |
host01の/nishomeがマウントできました。