#安裝軟體包配置基礎環境
yum -y install ypserv rpcbind
echo '/usr/bin/ypdomainname hpc.com'>>/etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
/usr/bin/ypdomainname hpc.com
#設定允許使用nis的客戶端網段
vi /var/yp/securenets
255.0.0.0 127.0.0.0
255.0.0.0 10.0.0.0
#編輯hosts表
vi /etc/hosts
10.0.0.30 mgt01
10.0.0.32 client01
#設定服務啟動
systemctl start rpcbind ypserv ypxfrd yppasswdd
systemctl enable rpcbind ypserv ypxfrd yppasswdd
#初始化
/usr/lib64/yp/ypinit -m
next host to add: mgt01
next host to add:# ctrl + d key
is this correct? [y/n: y] y
#重啟服務
systemctl restart rpcbind ypserv ypxfrd yppasswdd
#新增使用者後執行重新整理資料庫
cd /var/yp
make
#客戶端安裝
yum -y install ypbind rpcbind
echo '/usr/bin/ypdomainname hpc.com'>>/etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
/usr/bin/ypdomainname hpc.com
#編輯hosts表
vi /etc/hosts
10.0.0.30 mgt01
10.0.0.31 client01
#客戶端加入
authconfig --enablenis --nisdomain=hpc.com --nisserver=mgt01 --updateall
#設定服務啟動
systemctl start rpcbind ypbind
systemctl enable rpcbind ypbind
#首先配置以上客戶端新增
#配置副伺服器
yum -y install ypserv rpcbind
echo '/usr/bin/ypdomainname hpc.com'>>/etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
/usr/bin/ypdomainname
#設定允許使用nis的客戶端網段
vi /var/yp/securenets
255.0.0.0 127.0.0.0
255.0.0.0 10.0.0.0
#編輯hosts表
vi /etc/hosts
10.0.0.30 mgt01
10.0.0.31 mgt02
10.0.0.32 client01
#設定服務啟動
systemctl start rpcbind ypserv ypxfrd yppasswdd
systemctl enable rpcbind ypserv ypxfrd yppasswdd
#從主節點同步資料
/usr/lib64/yp/ypinit -s hpc.com
#配置主節點為客戶端
authconfig --enablenis --nisdomain=hpc.com --nisserver=mgt01 --updateall
#主節點編輯配置
vi /var/yp/makefile
nopush=false
#新增副節點
/usr/lib64/yp/ypinit -m
next host to add: mgt02
next host to add: # ctrl + d key
is this correct? [y/n: y] y
#所有節點新增副伺服器
vi /etc/yp.conf
domain hpc.com server mgt01
domain hpc.com server mgt02
#主節點手動推送資料庫
nis從伺服器接替nis主伺服器步驟
nis從伺服器接替nis主伺服器步驟 1 修改 etc default nis檔案 內容同nis主伺服器,略 2 將nis主伺服器的 etc passwd etc shadow etc group及 etc netgroup檔案拷到nis從伺服器上,將其中有效資訊拷到nis從伺服器對應檔案中 3 重...
搭建NIS伺服器實現使用者集中化管理
nis服務簡介 nis 網路資訊服務 network information service nis 是集中控制幾個系統管理資料庫的網路產品。nis 簡化了 unix 和 linux 桌面客戶的管理工作,客戶端利用它可以使用中心伺服器的管理檔案。桌面系統的使用者無需建立他們自己的 etc passw...
NIS伺服器的搭建
nis 目前貌似已經沒人用咯.一 nis作用 nis 稱為網路資訊服務,也叫黃頁 yellow page 集中管理使用者帳號,組帳號,hosts檔案等 二 配置 1.伺服器端配置 1 把伺服器連到網路 i.配置主機名 vi etc sysconfig network hostname flola i...