メモ

[CentOS]サーバの日時を日本標準時間(JST)に設定する

投稿日:

CentOSの時間を日本時間に設定する

新規でサーバを構築する再、いつも忘れているのでメモ

開発環境[Windows10]-[Vagrant]-[VirtualBox]-[CentOS] で設定

コマンドプロンプト vagrant version

vagrant version
Installed Version: 2.1.2
Latest Version: 2.1.2

SSH cat /etc/redhat-release

cat /etc/redhat-release
CentOS release 6.10 (Final)

の環境で設定

日本時間設定

先ずは日本時間設定、これだけで設定完了

localtimeの設定

タイムゾーン設定

sudo cp -p /usr/share/zoneinfo/Japan /etc/localtime

 

NTPインストール

日本時間を設定するためにNTPインストール

sudo yum -y install ntp

 

NTP日付設定

サーバ時間設定・同期

sudo ntpdate ntp.nict.jp

 

自動起動設定

NTP自動起動・同期設定

ntp.confの編集

sudo vi /etc/ntp.conf

編集 コメントアウトし追加

# server 0.centos.pool.ntp.org iburst
# server 1.centos.pool.ntp.org iburst
# server 2.centos.pool.ntp.org iburst
# server 3.centos.pool.ntp.org iburst

server -4 ntp.nict.jp
server -4 ntp1.jst.mfeed.ad.jp
server -4 ntp2.jst.mfeed.ad.jp
server -4 ntp3.jst.mfeed.ad.jp

 

ntpdデーモン起動

sudo service ntpd start
Starting ntpd:                                             [  OK  ]

確認

ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*ntp-b3.nict.go. .NICT.           1 u   60   64  377    5.211    0.684   1.245
+ntp1.jst.mfeed. 133.243.236.17   2 u   55   64  377    3.626    1.134   1.120
-ntp2.jst.mfeed. 133.243.236.17   2 u   44   64  377    4.047   -0.239   1.455
+ntp3.jst.mfeed. 133.243.236.17   2 u   38   64  377    3.466   -0.770   1.453

 

自動起動設定

sudo chkconfig ntpd on

確認

chkconfig --list ntpd
ntpd            0:off   1:off   2:on    3:on    4:on    5:on    6:off

完了

 

-メモ
-

Copyright© WXY , 2024 All Rights Reserved Powered by STINGER.