NISクライアントとしての設定2008/08/24 |
NISサーバーができたら、次はクライアント側の設定をしてやります。
NISサーバー上のユーザー情報を仮想ネットワーク間で共有できるようにします。
以下では 'www' という名前のゲストOSを例に設定をしています。 |
|
[1] | サーバー側と同じ 'nis' パッケージを指定してインストールします。 |
www:~# aptitude -y install nis # NISドメインの設定画面が出るのでドメイン名を入力してEnter |
[2] | NISクライアントとしての設定をします。 |
www:~# vi /etc/yp.conf # # yp.conf Configuration file for the ypbind process. You can define # NIS servers manually here if they can't be found by # broadcasting on the local net (which is the default). # # See the manual page of ypbind for the syntax of this file. # # IMPORTANT: For the "ypserver", use IP addresses, or make sure that # the host is in /etc/hosts. This file is only interpreted # once, and if DNS isn't reachable yet the ypserver cannot # be resolved and ypbind won't ever bind to the server. # ypserver ypserver.network.com # 最終行へ追記 domain srv.world server nfs.srv.world www:~# vi /etc/nsswitch.conf passwd: nis compat# 7行目:追記 group: nis compat# 追記 shadow: nis compat# 追記 www:~# reboot www login: test # NISに登録したユーザー名 Password: Last login: Sun Jun 24 23:26:00 2007 on tty1 test@www:~$ # ログインできた test@www:~$ ypwhich 192.168.0.17 test@www:~$ ypcat passwd test:x:1002:1002:test,test,,:/home/test:/bin/bash test@www:~$ yppasswd Changing NIS account information for cent on nfs.srv.world. Please enter old password: Changing NIS password for cent on nfs.srv.world. Please enter new password: Please retype new password: The NIS password has been changed on nfs.srv.world. |
Sponsored Link |