Debian 8 Jessie
Sponsored Link

Configure NIS Client2015/05/18

 
Configure NIS Client.
[1] Install nis packages.
root@www:~#
aptitude -y install nis
Preconfiguring packages ...
# input domain name

# Autostart NIS in installation will be fail because configuration is none yet, so wait for a moment to finish it.

 +----------------------------| 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] Configure as a NIS Client.
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
# add to the end: [domain name] [server] [NIS server's hostname]

domain srv.world server dlp.srv.world
root@www:~#
vi /etc/nsswitch.conf
passwd:
compat
nis
# line 7: add

group:
compat
nis
# add

shadow:
compat
nis
# add
hosts:
files dns
nis
# add
# set follows if needed (create home directory automatically if none)

root@www:~#
vi /etc/pam.d/common-session
session optional        pam_mkhomedir.so skel=/etc/skel umask=077

root@www:~#
systemctl restart nis

root@www:~#
Debian GNU/Linux 8 www.srv.world ttyS0
www login:
debian
# user on NIS

Password:
Linux www.srv.world 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt9-3~deb8u1 (2015-04-24) x86_64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Creating directory '/home/debian'.
debian@www:~$
# just logined
# try to change NIS password

debian@www:~$
Changing NIS account information for debian on dlp.srv.world.
Please enter old password:
Changing NIS password for debian on dlp.srv.world.
Please enter new password:
Please retype new password:

The NIS password has been changed on dlp.srv.world.
Matched Content