サーバーの時計がずれると色々大層めんどくさいことになるので
外部のタイムサーバーを時間を同期させることに。
以下設定手順
まずはinstall済みか確認
[cc lang=’text’ ]
[root@foo ~]# yum list | grep ntp
chkfontpath.x86_64 1.10.1-1.1 installed
ntp.x86_64 4.2.2p1-9.el5.centos.2.1 installed
[/cc]
なんか余計なのも出てきたけどとりあえずinstallはされてるようで。
時刻問い合わせ先を設定する。
[cc lang=’text’ ]
[root@foo ~]# vi /etc/ntp.conf
[/cc]
[cc lang=’text’ ]
26 # Undisciplined Local Clock. This is a fake driver intended for backup
27 # and when no outside source of synchronized time is available.
[/cc]
の下あたりに公開NTPサーバーを設定する。
[cc lang=’text’ ]
server ntp1.jst.mfeed.ad.jp
server ntp2.jst.mfeed.ad.jp
server ntp3.jst.mfeed.ad.jp
[/cc]
↑こいつら
設定を保存してNTPの再起動
[cc lang=’text’ ]
[root@foo ~]# /etc/init.d/ntpd restart
Shutting down ntpd: [ OK ]
Starting ntpd: [ OK ]
[/cc]
ひとまず時計の確認
[cc lang=’text’ ]
[root@foo ~]# date
Thu Jun 16 13:37:48 JST 2011
[/cc]
NTPの動作確認
[cc lang=’text’ ]
[root@foo ~]# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
ntp1.sakura.ad. .GPS. 1 u 28 64 7 8.166 0.048 3.256
ntp1.jst.mfeed. 210.173.160.86 2 u 33 64 7 10.458 0.144 0.122
ntp2.jst.mfeed. 210.173.176.4 2 u 30 64 7 9.516 0.508 0.038
ntp3.jst.mfeed. 210.173.176.4 2 u 30 64 7 9.775 0.680 0.104
LOCAL(0) .LOCL. 10 l 28 64 7 0.000 0.000 0.001
[/cc]
動作してるようで。
なんかsakuraってのがいるけどまぁ多くて困るもんでもないので気にしないことにする。
自動起動の設定をチェック
[cc lang=’text’ ]
[root@foo ~]# chkconfig –list ntpd
ntpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
[/cc]
2-5がONなので自動起動されてますな。