NIS : NIS द्वितीयक सर्वर कॉन्फ़िगर करें2023/09/13 |
यदि NIS प्राथमिक सर्वर डाउन हो तो NIS सेवा जारी रखने के लिए NIS द्वितीयक सर्वर कॉन्फ़िगर करें।
+----------------------+ | +----------------------+ | [ NIS Primary ] |10.0.0.30 | 10.0.0.31| [ NIS Client ] | | dlp.srv.world +----------+----------+ client.srv.world | | | | | | +----------------------+ | +----------------------+ +----------------------+ | | [ NIS Secondary ] |10.0.0.51 | | node01.srv.world +----------+ | | +----------------------+ |
[1] | |
[2] | NIS सेकेंडरी सर्वर के रूप में कॉन्फ़िगर करें। |
root@node01:~#
vi /etc/default/nis # पंक्ति 6 : परिवर्तन (NIS द्वितीयक सेट करें) NISSERVER= slave
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 # NIS मास्टर सर्वर के साथ सिंक करें root@node01:~# /usr/lib/yp/ypinit -s dlp.srv.world We will need a few minutes to copy the data from dlp.srv.world. Transferring group.bygid... Trying ypxfrd ... success ..... ..... At this point, make sure that /etc/passwd and /etc/group have been edited so that when the NIS is activated, the data bases you have just created will be used, instead of the /etc ASCII files. |
[3] |
NIS प्राथमिक सर्वर को भी NIS क्लाइंट होना आवश्यक है।
NIS प्राथमिक सर्वर को NIS क्लाइंट के रूप में कॉन्फ़िगर करें, यहां देखें।
|
[4] | नए NIS द्वितीयक होस्ट के लिए NIS प्राथमिक सर्वर पर कॉन्फ़िगर करें। |
root@dlp:~#
vi /var/yp/Makefile # पंक्ति 23: परिवर्तन NOPUSH= false
# 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: node01.srv.world # NIS द्वितीयक निर्दिष्ट करें next host to add: # Ctrl + D चाबी The current list of NIS servers looks like this: dlp.srv.world node01.srv.world Is this correct? [y/n: y] y ..... ..... 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. |
[5] | NIS सेकेंडरी को भी बाइंड करने के लिए NIS क्लाइंट पर कॉन्फ़िगर करें। |
root@client:~#
vi /etc/yp.conf # अंत में द्वितीयक सर्वर सेटिंग जोड़ें domain srv.world server dlp.srv.world
domain srv.world server node01.srv.world
systemctl restart rpcbind nscd ypbind
|
Sponsored Link |
|