标签:教育 debian 同步 ntp服务 一个 confirm als 中国教育网 配置
随着群集系统的普及,系统间的时间同步成了主要问题,有些系统还不想连接外网,搭建一个内网时间同步服务器需求就来了安装NTP服务器
#apt install -y ntp
# dpkg --get-selections ntp [Can be used to confirm NTP is installed]
# dpkg -s ntp [Can also be used to confirm NTP is installed]
配置NTP服务器
#vim /etc/ntp.conf
...
pool ntp7.aliyun.com iburst //阿里云
pool cn.ntp.org.cn iburst //中国
pool edu.ntp.org.cn iburst //中国教育网
pool hk.ntp.org.cn iburst //中国香港
pool jp.ntp.org.cn iburst //日本
...
重启 NTP
#systemctl restart ntp
完成~
标签:教育 debian 同步 ntp服务 一个 confirm als 中国教育网 配置
原文地址:https://blog.51cto.com/14386969/2544450