配置Ubuntu/Debian时钟同步
Ubuntu系统默认的时钟同步服务器是ntp.ubuntu.com,Debian则是0.debian.pool.ntp.org等, 各Linux发行版都有自己的NTP官方服务器,在某些环境下,比如公司内网、云上子网等,是与互联网隔绝的。 这时要想做时钟同步,就只能自己配置了。
安装
一般timesync是预装的,如果没有,可以使用以下命令手动安装
udo apt install systemd-timesyncd
它和 NTP 是冲突的,二者只能安装一个
更改时区
查看当前系统时区
timedatectl
列出所有可用时区
timedatectl list-timezone
将系统时区更为 Asia/Shanghai,运行以下命令
udo timedatectl set-timezone Asia/Shanghai
再次执行 timedatectl 命令查看时区
配置
修改 /etc/systemd/timesyncd.conf,把NTP设为国内的或者自建的NTP服务器
[Time]
NTP=ntp7.aliyun.com
NTP=ntp6.aliyun.com
修改完成后,需要restart后这个配置才生效
udo systemctl restart systemd-timesyncd.service
如果以上systemd-timesyncd.service因为什么原因而不存在,则可通过以下命令修复:
udo dpkg-reconfigure systemd-timesyncd
再次查看验证
timedatectl
以下给出一些阿里云的NTP列表,可以通过ping择优使用
tp1.aliyun.com
tp2.aliyun.com
tp3.aliyun.com
tp4.aliyun.com
tp5.aliyun.com
tp6.aliyun.com
tp7.aliyun.com
本文参考自:
(1)https://note.qidong.name/2020/09/timesyncd
(2)https://www.myfreax.com/how-to-set-or-change-timezone-on-debian-9
- 上一篇:iis不能使用的一种情况
- 下一篇:fedora的安装[转载]