タイムゾーン設定
tzdataをインストールか再インストールして、WEBサーバに読み込ませる。
# yum reinstall tzdata # systemctl restart httpd
WordPressであれば一般設定 >> タイムゾーン 『東京』
これでOK!
日本時間設定
# timedatectl Local time: Thu 2018-03-01 21:45:55 JST Universal time: Thu 2018-03-01 12:45:55 UTC RTC time: Thu 2018-03-01 12:45:54 Time zone: n/a (JST, +0900) NTP enabled: yes NTP synchronized: yes RTC in local TZ: no DST active: n/a
# vi /etc/sysconfig/clock ZONE="Asia/Tokyo" UTC=false
# ln -sf /usr/share/zoneinfo/Japan /etc/localtime
# date Mon Jul 2 14:15:25 JST 2018
NTPクライアント設定
# yum install ntp
# 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
# systemctl enable ntpd # systemctl start ntpd
# ntpq -p remote refid st t when poll reach delay offset jitter ============================================================================== ntp-b3.nict.go. .NICT. 1 u 32 64 7 3.628 -2.129 1.125 ntp1.jst.mfeed. 133.243.236.17 2 u 34 64 7 2.013 -0.924 1.066 ntp2.jst.mfeed. 133.243.236.17 2 u 32 64 7 1.955 -0.540 1.090 ntp3.jst.mfeed. 133.243.236.17 2 u 31 64 7 1.936 -1.906 1.130
確認
# date Thu Dec 21 06:19:14 JST 2017