配置时钟同步ntpd服务

安装NTP

NTP在安装的时候会有人工设置的选项,因为想要自动化安装,所以希望可以跳过人为设置时区这一步

查询得知是tzdata安装导致的原因,可以设置环境变量来禁止交互

1
2
3
4
ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
export DEBIAN_FRONTEND=noninteractive
apt-get install -y tzdata
dpkg-reconfigure --frontend noninteractive tzdata

参考资料:https://stackoverflow.com/questions/44331836/apt-get-install-tzdata-noninteractive

然后再安装ntp就不会有提示了

1
apt install ntp -y

修改/etc/ntp.conf配置改变ntp服务,然后启动

1
service ntpd start

在此之前可以考虑使用ntpdate来预先同步一下时间

1
2
apt install ntpdate -y
ntpdate cn.pool.ntp.org
文章目录
  1. 1. 安装NTP
|