After NIS is running, you might need to create an NIS slave server that you did not include in the initial list given to the ypinit command. Use this procedure to add a new NIS slave server.
For more information, see Using Your Assigned Administrative Rights in Securing Users and Processes in Oracle Solaris 11.2 .
# cd /var/yp/domainname
# makedbm -u ypservers >/tmp/temp_file
The makedbm command converts ypservers from ndbm format to a temporary ASCII file /tmp/temp_file.
Add the name of the new slave server to the list of servers. Then, save and close the file.
# makedbm /tmp/temp_file ypservers
The makedbm command then converts ypservers back into ndbm format.
Because there is no ASCII file for ypservers, type the following on the slave server:
slave3# makedbm -u ypservers
The makedbm command displays each entry in ypservers on your screen.
For more information, see Using Your Assigned Administrative Rights in Securing Users and Processes in Oracle Solaris 11.2 .
# domainname example.com
Copy the NIS map set from the master server, then start the NIS client. When running the ypinit command, follow the prompts and list the NIS servers in order of preference.
slave3# cd /var/yp slave3# ypinit -c
slave3# /usr/sbin/ypinit –s ypmaster
where ypmaster is the machine name of the existing NIS master server.
slave3# svcadm disable network/nis/client
# svcs \*nis\* STATE STIME FMRI online 20:32:56 svc:/network/nis/domain:default online 20:32:56 svc:/network/nis/client:default
If the services are displayed with an online state, then NIS is running. If the service state is disabled, then NIS is not running.
# svcadm restart network/nis/domain # svcadm restart network/nis/client
# svcadm enable network/nis/domain # svcadm enable network/nis/client
# svcs network/nis/server STATE STIME FMRI offline 20:32:56 svc:/network/nis/server:default
slave3# svcadm restart network/nis/server
slave3# svcadm enable network/nis/server