CentOS 6
Sponsored Link

NISクライアントの設定2015/03/08

 
NISクライアント側の設定です。
[1] Ypbind をインストールして設定します。
[root@www ~]#
yum -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 \
--update

Starting rpcbind: [ OK ]
Starting NIS service: [ OK ]
Binding NIS service: .[ OK ]
# ユーザーのホームディレクトリをサーバー個々に持たせるならば以下を設定

# (ログイン時にホームディレクトリを自動作成)

[root@www ~]#
vi /etc/pam.d/system-auth
# 最終行に追記

session     optional      pam_mkhomedir.so skel=/etc/skel umask=077

[root@www ~]#
chkconfig rpcbind on

[root@www ~]#
chkconfig ypbind on

[root@www ~]#
www.srv.world login:
redhat
   
# NISのユーザーでログイン

Password:
Creating directory '/home/redhat'.
[redhat@www ~]$    
# ログインできた
# 動作確認

[redhat@www ~]$
dlp.srv.world
[redhat@www ~]$
ypcat passwd

cent:x:500:500::/home/cent:/bin/bash
redhat:x:501:501::/home/redhat:/bin/bash
# パスワード変更

[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.
[redhat@www ~]$    
# 変更完了

関連コンテンツ