NIS : NIS क्लाइंट कॉन्फ़िगर करें2023/09/13 |
NIS उपयोगकर्ता खाते के साथ लॉगिन करने के लिए NIS सर्वर को बाइंड करने के लिए NIS क्लाइंट को कॉन्फ़िगर करें।
|
|
[1] | NIS सिस्टम स्थापित करें। |
root@node01:~# apt -y install nis
|
[2] | NIS क्लाइंट के रूप में कॉन्फ़िगर करें। |
root@node01:~#
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 dlp.srv.world
root@node01:~#
vi /etc/nsswitch.conf # पंक्ति 7 : इस प्रकार जोड़ें passwd: files systemd nis group: files systemd nis shadow: files nis gshadow: files hosts: files dns nis
root@node01:~#
vi /etc/defaultdomain # नया बनाएं: NIS डोमेन नाम सेट करें srv.world # यदि आवश्यक हो तो सेट निम्नानुसार है (यदि कोई नहीं है तो स्वचालित रूप से होम निर्देशिका बनाएं) root@node01:~# vi /etc/pam.d/common-session # अंत में जोड़ें session optional pam_mkhomedir.so skel=/etc/skel umask=077
root@node01:~#
systemctl restart rpcbind nscd ypbind root@node01:~# systemctl enable rpcbind nscd ypbind root@node01:~# node01 login: jammy # NIS उपयोगकर्ता Password: Welcome to Ubuntu 22.04.1 LTS (GNU/Linux 5.15.0-25-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage System information as of Fri Sep 9 00:20:31 UTC 2022 System load: 0.0068359375 Processes: 124 Usage of /: 25.9% of 26.68GB Users logged in: 0 Memory usage: 5% IPv4 address for enp1s0: 10.0.0.51 Swap usage: 0% ..... ..... Creating directory '/home/jammy'. jammy@node01:~$ # NIS पासवर्ड बदलना इस प्रकार है focal@node01:~$ Changing NIS account information for jammy on dlp.srv.world. Please enter old password: Changing NIS password for jammy on dlp.srv.world. Please enter new password: Please retype new password: The NIS password has been changed on dlp.srv.world. jammy@node01:~$ |
Sponsored Link |
|