Neil Developer

freebsd 使用 Ntpdate 和 Ntpd 自动更新系统时间

2017-05-12
Neil

由于某些原因,系统时间有时候不对了.
freebsd 如何同步时间.

  1. 手动同步:
ntpdate -b pool.ntp.org

几秒钟后, 时间就同步了.

  1. 启动系统 Ntpd 服务, 自动同步:
    编辑系统的文件: /etc/ntpd.conf
server pool.ntp.org
driftfile /etc/ntp.drift
logfile /var/log/ntpd.log

然后编辑: /etc/rc.conf
加入一行:

ntpd_enable="YES"
ntpdate_enable="YES"

启动ntpd 服务:

service ntpd start

参考:
1. http://www.surlyjake.com/blog/2008/11/17/freebsd-time-updates-with-ntpdate-and-ntpd/
1. https://www.cyberciti.biz/tips/freebsd-timeclock-synchronization-with-ntp-server.html


Comments

Content