Fedora 25
Sponsored Link

NISクライアントの設定2016/11/30

 
NISクライアントの設定です。
ここでは以下のような環境を例に NISを構築しています。
+----------------------+          |          +----------------------+
| [    NIS Server    ] |10.0.0.30 | 10.0.0.31| [    NIS Client    ] |
|    dlp.srv.world     +----------+----------+     www.srv.world    |
|                      |                     |                      |
+----------------------+                     +----------------------+

[1] NISクライアントの設定です。
[root@www ~]#
dnf -y install ypbind rpcbind
# NISドメイン設定

[root@www ~]#
ypdomainname srv.world

[root@www ~]#
echo "NISDOMAIN=srv.world" >> /etc/sysconfig/network

[root@www ~]#
authconfig \
--enablenis \
--nisdomain=srv.world \
--nisserver=dlp.srv.world \
--enablemkhomedir \
--update
[root@www ~]#
systemctl start rpcbind ypbind

[root@www ~]#
systemctl enable rpcbind ypbind

[root@www ~]#
www login:
redhat
# NIS 登録ユーザー

Password:
# パスワード入力

Creating home directory for redhat.
[redhat@www ~]$
# ログインできた
# 参照している NISサーバー確認

[redhat@www ~]$
dlp.srv.world
# パスワード変更確認

[redhat@www ~]$
Changing NIS account information for redhat on dlp.srv.world.
Please enter old password:    
# 現在のパスワード

Changing NIS password for redhat on dlp.srv.world.
Please enter new password:    
# 変更後のパスワード

Please retype new password:
The NIS password has been changed on dlp.srv.world.
関連コンテンツ