Ubuntu 22.04
Sponsored Link

NIS : NIS सर्वर कॉन्फ़िगर करें2023/09/13

 
अपने स्थानीय नेटवर्क में उपयोगकर्ताओं के खाते साझा करने के लिए NIS सर्वर कॉन्फ़िगर करें।
[1] NIS सिस्टम स्थापित करें।
root@dlp:~#
apt -y install nis
[2] NIS प्राथमिक सर्वर के रूप में कॉन्फ़िगर करें।
root@dlp:~#
vi /etc/default/nis
# पंक्ति 11 : परिवर्तन (NIS को प्राथमिक सर्वर के रूप में सेट करें)

NISSERVER=
master
root@dlp:~#
vi /etc/ypserv.securenets
# This line gives access to everybody. PLEASE ADJUST!
# टिप्पणी करना
# 0.0.0.0         0.0.0.0
# ::/0

# आईपी ​​रेंज जोड़ें जिसे आप NIS क्लाइंट से NIS सर्वर को बाइंड करने की अनुमति देते हैं
255.255.255.0   10.0.0.0

root@dlp:~#
vi /etc/hosts
127.0.0.1       localhost
# वे होस्ट जोड़ें जिन्हें आप NIS डेटाबेस में जोड़ना चाहते हैं

10.0.0.30 dlp.srv.world dlp
10.0.0.51 node01.srv.world node01

root@dlp:~#
vi /etc/defaultdomain
# नया बनाएं: NIS डोमेन नाम सेट करें

srv.world
root@dlp:~#
systemctl restart rpcbind ypserv yppasswdd ypxfrd

root@dlp:~#
systemctl enable rpcbind ypserv yppasswdd ypxfrd
# NIS डेटाबेस अद्यतन करें

root@dlp:~#
/usr/lib/yp/ypinit -m
At this point, we have to construct a list of the hosts which will run NIS
servers.  dlp.srv.world is in the list of NIS server hosts.  Please continue to add
the names for the other hosts, one per line.  When you are done with the
list, type a <control D>.
        next host to add:  dlp.srv.world
        next host to add:  # Ctrl + D चाबी
The current list of NIS servers looks like this:

dlp.srv.world

Is this correct?  [y/n: y]  y
We need a few minutes to build the databases...
Building /var/yp/srv.world/ypservers...
Running /var/yp/Makefile...
gmake[1]: Entering directory '/var/yp/srv.world'
Updating passwd.byname...
Updating passwd.byuid...
Updating group.byname...
Updating group.bygid...
Updating hosts.byname...
Updating hosts.byaddr...
Updating rpc.byname...
Updating rpc.bynumber...
Updating services.byname...
Updating services.byservicename...
Updating netid.byname...
Updating protocols.bynumber...
Updating protocols.byname...
Updating netgroup...
Updating netgroup.byhost...
Updating netgroup.byuser...
Updating shadow.byname...
gmake[1]: Leaving directory '/var/yp/srv.world'

dlp.srv.world has been set up as a NIS master server.

Now you can run ypinit -s dlp.srv.world on all slave server.
[3] यदि आपने स्थानीय सर्वर में उपयोगकर्ता जोड़े हैं, तो उन्हें NIS डेटाबेस पर भी लागू करें।
root@dlp:~#
cd /var/yp

root@dlp:/var/yp#
make
मिलान सामग्री