CentOS 6
Sponsored Link

NISスレーブサーバーの設定2015/03/08

 
NISスレーブサーバーを構築し、NISマスターサーバーダウン時も NISクライアントに対してサービスを継続できるようにします。
[1]
[2] NIS スレーブとするホストで Ypserv をインストールして設定します。
IPTables を有効にしている場合は、以下の設定に加えて、こちらの [3] と同様に NIS 関連サービスの許可も必要です
[root@slave ~]#
yum -y install ypserv rpcbind
# NISドメイン設定

[root@slave ~]#
ypdomainname srv.world

[root@slave ~]#
echo 'NISDOMAIN=srv.world' >> /etc/sysconfig/network

[root@slave ~]#
vi /var/yp/securenets
# 新規作成 (アクセス許可するネットワーク)

255.0.0.0       127.0.0.0
255.255.255.0   10.0.0.0

[root@slave ~]#
vi /etc/hosts
# NISマスターサーバー および 自身のIPを登録

10.0.0.30   dlp.srv.world dlp
10.0.0.50   slave.srv.world slave

[root@slave ~]#
/etc/rc.d/init.d/rpcbind start

Starting portmap:     [  OK  ]
[root@slave ~]#
/etc/rc.d/init.d/ypserv start

Starting YP server services:     [  OK  ]
[root@slave ~]#
/etc/rc.d/init.d/ypxfrd start

Starting YP server services:     [  OK  ]
[root@slave ~]#
/etc/rc.d/init.d/yppasswdd start

Starting YP passwd service:     [  OK  ]
[root@slave ~]#
chkconfig rpcbind on

[root@slave ~]#
chkconfig ypserv on

[root@slave ~]#
chkconfig ypxfrd on

[root@slave ~]#
chkconfig yppasswdd on
# マスターサーバーのデータベース同期

[root@slave ~]#
/usr/lib64/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/lib64/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
       
# NISスレーブサーバーを指定

        next host to add:
slave.srv.world

        next host to add:    
# Ctrl + D キーを押す

The current list of NIS servers looks like this:

dlp.srv.world
slave.srv.world

Is this correct? [y/n: y]
y

We need a few minutes to build the databases...
Building /var/yp/srv.world/ypservers...
...
...
Now you can run ypinit -s dlp.srv.world on all slave server.
[5] NIS クライアントがスレーブサーバーも参照できるよう設定します。 以上により、マスターサーバーダウン時も、参照先がスレーブサーバーに自動で切り替わり、NIS サービスは継続されるようになります。
[root@www ~]#
vi /etc/yp.conf
# 最終行にスレーブサーバーを追記

domain srv.world server dlp.srv.world
domain srv.world server slave.srv.world
[root@www ~]#
/etc/rc.d/init.d/ypbind restart

Shutting down NIS service: [ OK ]
Starting NIS service: [ OK ]
Binding NIS service: [ OK ]
関連コンテンツ