NISクライアントの設定2018/06/06 |
NISクライアント側の設定です。
|
|
[1] | サーバー側と同じ nis パッケージを指定してインストールします。 |
root@www:~#
apt -y install nis
Preconfiguring packages ...
# インストール中、NISドメインの設定画面が出るのでドメイン名を入力 +----------------------------| Configuring nis |----------------------------+ | Please choose the NIS "domainname" for this system. If you want this | | machine to just be a client, you should enter the name of the NIS domain | | you wish to join. | | | | Alternatively, if this machine is to be a NIS server, you can either | | enter a new NIS "domainname" or the name of an existing NIS domain. | | | | NIS domain: | | | | srv.world_____________________________________________________________ | | | | <Ok> | | | +---------------------------------------------------------------------------+ |
[2] | NIS クライアントとしての設定です。 |
root@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 (ドメイン名) server (NISマスターサーバーのホスト名 or IPアドレス)] domain srv.world server dlp.srv.world
root@www:~#
vi /etc/nsswitch.conf # 7行目:以下のように追記 passwd: compat systemd nis group: compat systemd nis shadow: compat nis gshadow: files hosts: files dns nis # 最終行に追記 ( ログイン時にホームディレクトリを自動作成 ) session optional pam_mkhomedir.so skel=/etc/skel umask=077 www login: bionic # NIS登録ユーザー Password: Welcome to Ubuntu 18.04 LTS (GNU/Linux 4.15.0-20-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Wed Jun 6 14:05:51 JST 2018 System load: 0.0 Processes: 94 Usage of /: 6.2% of 28.45GB Users logged in: 0 Memory usage: 3% IP address for ens3: 10.0.0.31 Swap usage: 0% * Meltdown, Spectre and Ubuntu: What are the attack vectors, how the fixes work, and everything else you need to know - https://ubu.one/u2Know 18 packages can be updated. 10 updates are security updates. Creating directory '/home/bionic'. bionic@www:~$ # ログインできた # NISパスワード変更は以下の通り bionic@www:~$ Changing NIS account information for bionic on dlp.srv.world. Please enter old password: Changing NIS password for bionic on dlp.srv.world. Please enter new password: Please retype new password: The NIS password has been changed on dlp.srv.world. bionic@www:~$ |
Sponsored Link |