0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ラズパイで時刻同期にてこずる。

Last updated at Posted at 2024-12-02

systemd-timesyncdの設定でどうしても時刻同期ができないのでchronyを導入する。
1.サービスの停止と削除、chronyインストール

sudo systemctl stop systemd-timesyncd
sudo apt remove systemd-timessyncd
sudo apt install chrony

2.コンフィグ修正

sudo cp /etc/chrony/chrony.conf /etc/chrony/chrony.conf.bak
sudo vim /etc/chrony/chrony.conf

Use Debian vender zoneの位置で
サーバの記述部分をコメントアウトして、
以下 記述を追加
server ntp.nict.jp iburst minpoll 8 maxpoll 14
server ntp.jst.mfeed.ad.jp iburst minpoll 8 maxpoll 14
server time.google.com iburst minpoll 8 maxpoll 14

ちなみに、サーバ横のオプションは 以下だそう。

iburst : 起動直後に短い間隔で4回問い合わせをする
minpoll n : ポーリング間隔最小値のべき乗数(2のn乗秒)
maxpoll n : ポーリング間隔最大値のべき乗数(2のn乗秒)

3.chrony起動とステータス確認

sudo systemctl restart chrony
sudo systemctl status chrony

うまくいった。

念のため 時刻比較

sudo apt install nptdate
sudo ntpdate ntp.nict.jp && date

dateの秒が若干ずれているが、コマンドの発行時間だと思う。。。
2台とも同じズレなのでたぶんそうだろう。

参考サイト
https://qiita.com/ngkazu/items/916f476985fa3e3f2951

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?