CentOSに時刻同期を入れておく
めもめも
時刻確認
起動時、強制的にNTPの時刻同期をしてくれる
# Drop root to id 'ntp:ntp' by default.
OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid"
# Set to 'yes' to sync hw clock after successful ntpdate
SYNC_HWCLOCK=yes
# Additional options for ntpdate
NTPDATE_OPTIONS=""
ntpサーバを変更する場合は以下にて実施
時刻確認
date時刻同期インストール
yum -y install ntp設定変更
cp -p /etc/sysconfig/ntpd /etc/sysconfig/ntpd.org下記のようになるように変更する
vi /etc/sysconfig/ntpd
起動時、強制的にNTPの時刻同期をしてくれる
# Drop root to id 'ntp:ntp' by default.
OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid"
# Set to 'yes' to sync hw clock after successful ntpdate
SYNC_HWCLOCK=yes
# Additional options for ntpdate
NTPDATE_OPTIONS=""
ntpサーバを変更する場合は以下にて実施
vi /etc/ntp.conf時刻同期開始(この時強制的に時刻同期される)
/etc/rc.d/init.d/ntpd start時刻同期の自動起動設定
chkconfig ntpd on参考サイト 技術/Linux/CentOS 5.3 をクライアントとして使う時のntpd - Glamenv-Septzen.net
ntpd: 時間サーバーと同期中: [ OK ]
ハードウェア時刻をシステム時刻に同期中 [ OK ]
ntpd を起動中: [ OK ]
ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
ntp1.jst.mfeed. 210.173.176.4 2 u 4 64 3 22.912 894172. 1.125
ntp2.jst.mfeed. 210.173.160.56 2 u 4 64 3 23.250 894172. 1.312
ntp3.jst.mfeed. 133.243.236.18 2 u 5 64 3 22.798 894173. 0.988
LOCAL(0) .LOCL. 10 l 4 64 3 0.000 0.000 0.001
date
コメント