Ubuntu HPC NIS client setup on compute nodes
From Notes_Wiki
Revision as of 05:47, 23 February 2023 by Saurabh (talk | contribs) (Created page with "Home > Ubuntu > HPC setup with openpbs and openmpi > NIS client setup on compute nodes #Install NIS packages #:<pre> #:: apt -y install nis nscd #:</pre> #: During installation mention correct NIS domain as setup on master node. #Add below line in '<tt>/etc/yp.conf</tt>' file #:<pre> #:: domain <private-domain> server master #:</pre> #Add nis based re...")
Home > Ubuntu > HPC setup with openpbs and openmpi > NIS client setup on compute nodes
- Install NIS packages
- apt -y install nis nscd
- During installation mention correct NIS domain as setup on master node.
- Add below line in '/etc/yp.conf' file
- domain <private-domain> server master
- Add nis based resolution for various databases in '/etc/nsswitch.conf' file such as:
- passwd: files systemd nis
- group: files systemd nis
- shadow: files nis
- hosts: files dns nis
- Add below line in common-session ile
- vim /etc/pam.d/common-session
- session optional pam_mkhomedir.so skel=/etc/skel umask=007
- Restart NIS server and check whether user1 is visible in passwd database or not
- systemctl restart nis
- getent passwd
For some reason any new user login is not working on client until system is rebooted. This issue needs to be debugged.
Home > Ubuntu > HPC setup with openpbs and openmpi > NIS client setup on compute nodes