저는 Raspbian Stretch(Debian)를 사용하여 Raspberry Pi Model 2B를 실행하고 있습니다.
UI 앱( cron 을 통해 실행되는 크롬 브라우저 /home/pi/.config/lxsession/LXDE-pi/autostart
)과 cron을 통해 실행되는 스크립트가 있는데 둘 다 실행 시 설정되는 실제 현재 시간에 따라 달라집니다(또는 처리하기 위해 코드에 추악한 해킹을 추가해야 합니다). ).
부팅 시간은 어느 시점에서 WLAN을 통해 시간이 동기화될 때까지 몇 시간 동안 지연됩니다.
나는 NTP가 동기화할 기회를 가질 때까지 자동 시작과 cron 실행을 어떻게든 지연시킬 수 있을 것이라고 생각했습니다.
어떻게 해야 하나요? 아니면 둘 다 시작할 수 있는 다른 방법이 있나요?
답변1
이에 대한 내용은 Raspberry Pi SE 웹사이트의 Q&A에서 다룹니다.NTPD가 시작 후 날짜/시간을 업데이트하도록 강제하는 방법은 무엇입니까?.
방법 1
이 방법이 더 선호되는 새로운 방법인 것 같습니다.
$ timedatectl
Local time: Thu 2018-07-26 16:10:31 EDT
Universal time: Thu 2018-07-26 20:10:31 UTC
RTC time: n/a
Time zone: America/New_York (EDT, -0400)
Network time on: no
NTP synchronized: yes
RTC in local TZ: no
활성화되지 않은 경우:
$ timedatectl set-ntp True
root@pi-hole:~ # timedatectl
Local time: Thu 2018-07-26 16:11:45 EDT
Universal time: Thu 2018-07-26 20:11:45 UTC
RTC time: n/a
Time zone: America/New_York (EDT, -0400)
Network time on: yes
NTP synchronized: yes
RTC in local TZ: no
방법 #2
이 방법은 오래된 방법인 것 같습니다.
$ sudo apt-get install ntpdate
이 질문에 따르면:
ntpdate
이더넷 인터페이스가 나타날 때 실행되고 ntp 서버에서 시간을 설정합니다(참고자료 참조/etc/default/ntpdate
).
ntpd
실행 중인 경우 부팅하기 전에ntpdate
만 실행됩니다 . 따라서 이더넷 연결이 있는 한 부팅 시간을 설정해야 합니다.ntpdate
ntpd
그건 그렇고, 내 Raspian 버전에는 이 기능도 활성화되어 있지 않습니다.
$ more /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 9 (stretch)"
NAME="Raspbian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
방법 1과 2에 대한 나의 결론
이러한 솔루션을 더 자세히 살펴보면 실제로 실행될 위치에 대한 표시가 없으므로 다른 AU Q&A의 의견이 약간 혼란스럽습니다. NIC의 작동 상태에 연결된 경우 다음과 같은 내용이 표시될 것으로 예상됩니다.
$ cat /etc/network/interfaces
auto eth0
iface eth0 inet dhcp
post-up /usr/local/sbin/update-time.sh
# REF: https://askubuntu.com/a/708832/17531
방법 #3
위의 내용을 고려하여 Raspberry Pi(Raspian)에서도 이러한 NTP 동기화를 구현하게 되었습니다.
마지막으로 나는 이것을 내 것에 추가했습니다 /etc/rc.local
.
$ cat /etc/rc.local
logger "Beginning force syncing NTP..."
service ntp stop
ntpd -gq
service ntp start
logger "Finished force syncing NTP..."
결과 /var/log/syslog
:
Aug 5 09:10:20 pi-hole ntp[526]: Starting NTP server: ntpd.
Aug 5 09:10:20 pi-hole ntpd[555]: proto: precision = 1.458 usec (-19)
Aug 5 09:10:20 pi-hole ntpd[555]: Listen and drop on 0 v6wildcard [::]:123
Aug 5 09:10:20 pi-hole ntpd[555]: Listen and drop on 1 v4wildcard 0.0.0.0:123
Aug 5 09:10:20 pi-hole ntpd[555]: Listen normally on 2 lo 127.0.0.1:123
Aug 5 09:10:20 pi-hole ntpd[555]: Listen normally on 3 eth0 192.168.1.85:123
Aug 5 09:10:20 pi-hole ntpd[555]: Listen normally on 4 lo [::1]:123
Aug 5 09:10:20 pi-hole ntpd[555]: Listen normally on 5 eth0 [fe80::f5ea:7663:4ec:784d%2]:123
Aug 5 09:10:20 pi-hole ntpd[555]: Listening on routing socket on fd #22 for interface updates
Aug 5 09:10:21 pi-hole ntpd[555]: ntpd exiting on signal 15 (Terminated)
Aug 5 09:10:21 pi-hole ntp[661]: Stopping NTP server: ntpd.
Aug 5 09:10:21 pi-hole ntpd[674]: ntpd [email protected] Sat Mar 10 18:03:33 UTC 2018 (1): Starting
Aug 5 09:10:21 pi-hole ntpd[674]: Command line: ntpd -gq
Aug 5 09:10:21 pi-hole ntpd[674]: proto: precision = 0.625 usec (-21)
Aug 5 09:10:21 pi-hole ntpd[674]: Listen and drop on 0 v6wildcard [::]:123
Aug 5 09:10:21 pi-hole ntpd[674]: Listen and drop on 1 v4wildcard 0.0.0.0:123
Aug 5 09:10:21 pi-hole ntpd[674]: Listen normally on 2 lo 127.0.0.1:123
Aug 5 09:10:21 pi-hole ntpd[674]: Listen normally on 3 eth0 192.168.1.85:123
Aug 5 09:10:21 pi-hole ntpd[674]: Listen normally on 4 lo [::1]:123
Aug 5 09:10:21 pi-hole ntpd[674]: Listen normally on 5 eth0 [fe80::f5ea:7663:4ec:784d%2]:123
Aug 5 09:10:21 pi-hole ntpd[674]: Listening on routing socket on fd #22 for interface updates
Aug 5 09:10:34 pi-hole ntpd[674]: Soliciting pool server 198.98.57.16
Aug 5 09:10:35 pi-hole ntpd[674]: Soliciting pool server 74.82.59.149
Aug 5 09:10:36 pi-hole ntpd[674]: Soliciting pool server 23.131.160.7
Aug 5 09:10:36 pi-hole ntpd[674]: Soliciting pool server 52.37.26.163
Aug 5 09:10:36 pi-hole ntpd[674]: Soliciting pool server 204.2.134.163
Aug 5 09:10:36 pi-hole ntpd[674]: Soliciting pool server 96.126.100.203
Aug 5 09:10:36 pi-hole ntpd[674]: Soliciting pool server 199.223.248.101
Aug 5 09:10:36 pi-hole ntpd[674]: Soliciting pool server 66.228.42.59
Aug 5 09:10:36 pi-hole ntpd[674]: Soliciting pool server 208.75.89.4
Aug 5 09:10:37 pi-hole ntpd[674]: Soliciting pool server 204.2.134.164
Aug 5 09:10:37 pi-hole ntpd[674]: Soliciting pool server 104.236.116.147
Aug 5 09:10:38 pi-hole ntpd[674]: Soliciting pool server 204.9.54.119
Aug 5 09:10:48 pi-hole ntpd[674]: ntpd: time set +6.769186 s
Aug 5 09:10:49 pi-hole ntpd[853]: ntpd [email protected] Sat Mar 10 18:03:33 UTC 2018 (1): Starting
Aug 5 09:10:49 pi-hole ntpd[853]: Command line: /usr/sbin/ntpd -p /var/run/ntpd.pid -g -u 111:114
Aug 5 09:10:49 pi-hole ntp[844]: Starting NTP server: ntpd.
Aug 5 09:10:49 pi-hole ntpd[856]: proto: precision = 0.625 usec (-21)
Aug 5 09:10:49 pi-hole ntpd[856]: Listen and drop on 0 v6wildcard [::]:123
Aug 5 09:10:49 pi-hole ntpd[856]: Listen and drop on 1 v4wildcard 0.0.0.0:123
Aug 5 09:10:49 pi-hole ntpd[856]: Listen normally on 2 lo 127.0.0.1:123
Aug 5 09:10:49 pi-hole ntpd[856]: Listen normally on 3 eth0 192.168.1.85:123
Aug 5 09:10:49 pi-hole ntpd[856]: Listen normally on 4 lo [::1]:123
Aug 5 09:10:49 pi-hole ntpd[856]: Listen normally on 5 eth0 [fe80::f5ea:7663:4ec:784d%2]:123
Aug 5 09:10:49 pi-hole ntpd[856]: Listening on routing socket on fd #22 for interface updates
Aug 5 09:10:49 pi-hole root: Finished force syncing NTP...
rc.local이 왜 필요한가요?
이 문제를 조사하는 동안 제가 발견한 점 chrony
은 ntpd
. 이를 시스템에 배치하면 주로 다음 파일을 통해 systemd의 timedatectl 기능이 무효화됩니다.
$ cat /lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf
[Unit]
# don't run timesyncd if we have another NTP daemon installed
ConditionFileIsExecutable=!/usr/sbin/ntpd
ConditionFileIsExecutable=!/usr/sbin/openntpd
ConditionFileIsExecutable=!/usr/sbin/chronyd
ConditionFileIsExecutable=!/usr/sbin/VBoxService
결과는 다음과 같습니다.
$ systemctl status systemd-timesyncd.service
● systemd-timesyncd.service - Network Time Synchronization
Loaded: loaded (/lib/systemd/system/systemd-timesyncd.service; enabled; vendor preset: enabled)
Drop-In: /lib/systemd/system/systemd-timesyncd.service.d
└─disable-with-time-daemon.conf
Active: inactive (dead)
Condition: start condition failed at Sun 2018-08-05 10:05:53 EDT; 1s ago
└─ ConditionFileIsExecutable=!/usr/sbin/ntpd was not met
Docs: man:systemd-timesyncd.service(8)
systemd
timesyncd 기능 에만 의존하도록 모든 것을 제거합니다 .
$ cat /lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf |awk -F'=!' '/Condition/ {print $2}' | xargs ls
ls: cannot access '/usr/sbin/ntpd': No such file or directory
ls: cannot access '/usr/sbin/openntpd': No such file or directory
ls: cannot access '/usr/sbin/chronyd': No such file or directory
ls: cannot access '/usr/sbin/VBoxService': No such file or directory
이제 실행을 허용합니다.
$ systemctl status systemd-timesyncd.service
● systemd-timesyncd.service - Network Time Synchronization
Loaded: loaded (/lib/systemd/system/systemd-timesyncd.service; enabled; vendor preset: enabled)
Drop-In: /lib/systemd/system/systemd-timesyncd.service.d
└─disable-with-time-daemon.conf
Active: active (running) since Sun 2018-08-05 10:14:44 EDT; 5s ago
Docs: man:systemd-timesyncd.service(8)
Main PID: 3714 (systemd-timesyn)
Status: "Synchronized to time server 108.59.2.24:123 (0.debian.pool.ntp.org)."
CGroup: /system.slice/systemd-timesyncd.service
└─3714 /lib/systemd/systemd-timesyncd
Aug 05 10:14:44 pi-hole systemd[1]: Starting Network Time Synchronization...
Aug 05 10:14:44 pi-hole systemd[1]: Started Network Time Synchronization.
Aug 05 10:14:45 pi-hole systemd-timesyncd[3714]: Synchronized to time server 108.59.2.24:123 (0.debian.pool.ntp.org).
Raspian(Ubuntu 및 Debian도 가정)에서 구성 파일의 주석은 다음 timesyncd.conf
위치에 이미 하드코딩된 NTP 서버가 있음을 나타내는 것 같습니다.
$ cat /etc/systemd/timesyncd.conf
...
...
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See timesyncd.conf(5) for details.
[Time]
#NTP=
#FallbackNTP=0.debian.pool.ntp.org 1.debian.pool.ntp.org 2.debian.pool.ntp.org 3.debian.pool.ntp.org
강제 동기화
동기화를 직접 강제하는 방법은 없는 것 같습니다. systemd-timesyncd
서비스를 다시 시작하면 실제로 재동기화가 트리거됩니다.
$ systemctl restart systemd-timesyncd
로그에서 이를 확인할 수 있습니다.
$ journalctl -u systemd-timesyncd
-- Logs begin at Thu 2016-11-03 13:16:42 EDT, end at Sun 2018-08-05 10:44:37 EDT. --
Aug 05 10:14:44 pi-hole systemd[1]: Starting Network Time Synchronization...
Aug 05 10:14:44 pi-hole systemd[1]: Started Network Time Synchronization.
Aug 05 10:14:45 pi-hole systemd-timesyncd[3714]: Synchronized to time server 108.59.2.24:123 (0.debian.pool.ntp.org).
Aug 05 10:44:37 pi-hole systemd[1]: Stopping Network Time Synchronization...
Aug 05 10:44:37 pi-hole systemd[1]: Stopped Network Time Synchronization.
Aug 05 10:44:37 pi-hole systemd[1]: Starting Network Time Synchronization...
Aug 05 10:44:37 pi-hole systemd[1]: Started Network Time Synchronization.
Aug 05 10:44:37 pi-hole systemd-timesyncd[4157]: Synchronized to time server 208.75.88.4:123 (0.debian.pool.ntp.org).
마지막 줄은 재부팅에서 나온 것입니다. 재부팅 외에도 systemd-timesyncd
이 특정 버전의 Raspian 버전에는 이 패치가 포함되어 있지 않습니다.timesync: 폴링 간격을 구성 가능하게 만듭니다 #7268이므로 다시 시작하는 것 외에는 동기화를 제어할 수 없습니다.
이후 버전에서는 systemd-timesyncd
다음 옵션을 사용할 수 있습니다.
PollIntervalMinSec=, PollIntervalMaxSec= The minimum and maximum poll intervals for NTP messages. Each setting takes a time value (in seconds). PollIntervalMinSec= must not be smaller than 16 seconds. PollIntervalMaxSec= must be larger than PollIntervalMinSec=. PollIntervalMinSec= defaults to 32 seconds, and PollIntervalMaxSec= defaults to 2048 seconds.
인용하다
답변2
그래서 결국 제가 한 일은 스크립트와 애플리케이션에 기본적인 시간 점프 인식을 구현하는 것이었습니다.