変奏現実

パソコンやMMORPGのことなどを思いつくまま・・・記載されている会社名・製品名・システム名などは、各社の商標、または登録商標です。

この画面は、簡易表示です

ntpd

ntpd

ntpdをインストする
元ネタはココ。
(1)ntpdをインスト。
# yum -y install ntp
(2)ntpdサーバーを設定。

/etc/ntp.conf
#server 0.centos.pool.ntp.org
#server 1.centos.pool.ntp.org
#server 2.centos.pool.ntp.org
server ntp.nict.jp # 日本標準時を提供しているNTPサーバー(stratum 1)
server ntp.jst.mfeed.ad.jp # 上記サーバーと直接同期しているNTPサーバー(stratum 2)
server <プロバイダのNTPサーバー名> # プロバイダのNTPサーバー※

(3)手動調整

# ntpdate ntp.nict.jp

19 Jan 13:20:06 ntpdate[18063]: step time server 133.243.238.243 offset -32401.513872 sec

(4)自動起動設定

# /etc/rc.d/init.d/ntpd start
ntpd を起動中:                                             [  OK  ]
# chkconfig ntpd on

# chkconfig –list ntpd

ntpd            0:off   1:off   2:on    3:on    4:on    5:on    6:off




top