CentOSでサーバ時間のずれを調整する方法(NTPの時刻同期)
2024/02/20
他サーバとAPIリクエスト等のやり取りをするにあたり、自サーバと他サーバの時間設定が数秒異なっておりそちらが原因で不具合が発生、ということがあった。サーバもスマホや自身で使うPCとかと同じく勝手に正しい時間に同期してくれるものと考えていたが違うらしい。以下に対応方法のメモ。
設定方法
#NTPのインストール
yum -y install ntp
#正確な日時を取得する
ntpdate ntp.nict.jp
#時刻の同期設定
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
#NTPを起動
service ntpd start
#NTPの自動起動設定
chkconfig ntpd on
#NTPのインストール
yum -y install ntp
#正確な日時を取得する
ntpdate ntp.nict.jp
#時刻の同期設定
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
#NTPを起動
service ntpd start
#NTPの自動起動設定
chkconfig ntpd on
#NTPのインストール yum -y install ntp #正確な日時を取得する ntpdate ntp.nict.jp #時刻の同期設定 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 #NTPを起動 service ntpd start #NTPの自動起動設定 chkconfig ntpd on
NTPとは
Network Time Protocoの略で、ネットワーク上で時間を同期するプロトコルのこと。
参考サイト
https://qiita.com/tsu-nera/items/9be676b04b190e45b281
https://eng-entrance.com/what-is-ntp
関連記事
-
-
AlmaLinux8.6にLAMP環境&WordPressを構築する方法
だいぶ前にCentOS6系から7系に移行したが、7系も2024/6/30にサポー ...
-
-
サーバー監視レポートメールを受信する(Logwatch)
サーバーの各種ログを整形してメールで送ってくれるLogwatchというものがある ...
-
-
VPSで決めた時間に自動でreboot(再起動)させる方法
VPSを常時起動させてると、どうもapache(httpd)がメモリを離してくれ ...
-
-
画像やPDF等のファイルへの直接アクセスは禁止し、PHP経由のみ表示やダウンロードを可能にする
ファイルアップローダーを作成する案件があり、アップロードしたファイルは「http ...
-
-
OpenLiteSpeedにvsftpdを導入しFTPクライアントソフトから接続する方法
先日Almalinux8系に1-Click InstallでOpenLiteSp ...