全部博文(2065)
分类:
2010-06-30 22:45:29
实现思路:
使用NTP(简称network time protocol)协议可以让你的计算机自动与服务器上的时间同步。从而保持最准确的时间。
中国国家授时中心的IP地址是:210.72.145.44。
Windows XP/2000系统:
控制面板,管理工具,服务中找到 Windows Time,设置启动类型为自动,再按下启动按钮。
在 DOS 命令行下让 Windows 使用国家授时中心的时间服务器:net time /setsntp:210.72.145.44
要想立刻与时间服务器同步需要重启时间服务,相应的命令是:
net stop w32time
net start w32time
linux系统:
安装ntp服务,15分钟校对一次
# yum install ntp
# crontab -e
加入一行:
*/15 * * * * ntpdate 210.72.145.44
要想立刻与时间服务器同步需要重启时间服务,相应的命令是:
service ntpd stop
service ntpd start
linux系统中使用ntpdate的遇到这样的错误提示:no server suitable for synchronization found
很可能是防火墙封锁了udp的123端口, 如果关闭的防火墙问题依旧, 很可能是上层路由的设置有问题,。
如果这种情况, 我们可以通过tcp来更新时间
查看时间服务器的时间:# rdate time-b.nist.gov
设置时间和时间服务器同步:# rdate -s time-b.nist.gov
下面附送系列时间服务器的列表, 有的不一定可以使用。
time.nist.gov
time-b.nist.gov
216.118.116.105
rdate.darkorb.net
202.106.196.19
time-b.timefreq.bldrdoc.gov
这样你的机器就会有一个准确的时间。