linux系统从windows xp上同步时间

最近公司客户的调度系统GPS天文时钟出现故障,导致整个调度系统失去时间源,时间积累误差达十几分钟。去现场更换时钟很不方便,所有就想用现场的一台win xp(可上网)的远程机器做NTPserver,然后给linux系统对时。上网查了好多资料,终于找到了一个有效的解决方案,具体内容和步骤如下:首先下载一个Windows下的NTP服务软件。这个软件可以搭建windows下的NTP服务器。http://www.meinberg.de/english/sw/下载对应的windows 系统上软件即可。安装配置特别简单,可以参考软件随机的文档。只要进行几个简单的步骤就可以完成linux和windows之间的时间同步了:

1、下载windows NTP 软件,并安装配置,安装过程中需要输入NTP服务器的IP时直接输入Windows服务器本机IP就行了
此软件有一个ntp.conf的配置文件(我本机的配置文件):

# NTP Network Time Protocol 
# Configuration File created by Windows Binary Distribution Installer Rev.: 1.22 mbg
# please check http://www.ntp.org for additional documentation and background information
# Use drift file 
driftfile "C:Program FilesNTPetc tp.drift"
# your local system clock, should be used as a backup
# (this is only useful if you need to distribute time no matter how good or bad it is)
server 127.127.1.0 prefer
# but it operates at a high stratum level to let the clients know and force them to
# use any other timesource they may have.
fudge 127.127.1.0 stratum 12
# Use a NTP server from the ntp pool project (see http://www.pool.ntp.org)
# Please note that you need at least four different servers to be at least protected against
# one falseticker. If you only rely on internet time, it is highly recommended to add
# additional servers here. 
# The 'iburst' keyword speeds up initial synchronization, please check the documentation for more details!
server 0.asia.pool.ntp.org iburst
server 1.asia.pool.ntp.org iburst
server 2.asia.pool.ntp.org iburst
server 0.us.pool.ntp.org iburst
server 1.us.pool.ntp.org iburst
server 2.us.pool.ntp.org iburst
# Use specific NTP servers
server 100.100.100.251
# End of generated ntp.conf --- Please edit this to suite your needs

2、启动NTP服务,在linux端运行以下命令同步时间

ntpdate  timeserver_ip

在linux下终端里执行如下命令即可实现对时:
ntpdate 100.100.100.251     (可多执行几次使其对时精确一些) 
命令执行成功后,会发现linux和windows的时间已经相同了

3、要想使Linux系统保持定时对时,可在/etc/cron.d/目录里新建一个date.cron的文件,里面输入如下内容:
 # 每5分钟执行一次对时操作

*/5 * * * *     /usr/sbin/ntpdate 100.100.100.251

然后在终端中执行

crontab date.cron

这样可以该定时操作就成为该用户的crontab文件了,可以利用如下命令进行查看

crontab -l

#每隔5分钟执行一次对时操作

*/5 * * * * /usr/sbin/ntpdate 100.100.100.251

.4、要想查看定时对时是否正常执行,可以执行如下命令查看日志文件

tail /var/log/cron
Mar 19 14:25:01 server1 crond[26973]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)
Mar 19 14:30:01 server1 crond[27062]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)
Mar 19 14:35:01 server1 crond[27122]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)
Mar 19 14:40:01 server1 crond[27185]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)
Mar 19 14:45:01 server1 crond[27250]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)
Mar 19 14:50:01 server1 crond[27311]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)
Mar 19 14:55:01 server1 crond[27379]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)
Mar 19 15:00:01 server1 crond[27442]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)
Mar 19 15:01:01 server1 crond[27485]: (root) CMD (run-parts /etc/cron.hourly)
Mar 19 15:05:01 server1 crond[27536]: (root) CMD (/usr/sbin/ntpdate 100.100.100.251)

由上内容即可看出每隔5分钟便执行对时操作了了。

常见问题:

  1. linux端运行ntpdate timeserver_name提示 ntpdate[2120]: the NTP socket is in use, exitinglinux几经启动了ntp进程,可以找着kill掉,重新运行命令 

  2. linux端运行ntpdate timeserver_name提示 No Server suitable for synchronization found检查windows 防火墙设置,配置防火墙通过这个ntp请求

  3. 需要修改ntp.conf文件时必须停止ntp服务,修改完后重新启动ntp服务举个例子:  ls [*]*a.txt   查找以*开头中间有任意字符以a.txt结尾的文件

原创文章,作者:蝙蝠侠•杰,如若转载,请注明出处:http://www.178linux.com/1714

(0)
蝙蝠侠•杰蝙蝠侠•杰
上一篇 2015-03-27 23:11
下一篇 2015-03-28 22:38

相关推荐

  • AWK学习总结

    AWK是一种优良的文本处理工具。其名称得自于它的创始人阿尔佛雷德·艾侯、彼得·温伯格和布莱恩·柯林汉姓氏的首个字母。AWK提供了极其强大的功能:可以进行正则表达式的匹配,样式装入、流控制、数学运算符、进程控制语句甚至于内置的变量和函数。它具备了一个完整的语言所应具有的几乎所有精美特性。 AWK学习总结 函数rand(): 函数length() 函数int()…

    Linux干货 2016-12-03
  • shell编程、程序包管理及习题

    shell编程、程序包管理及习题 一、编程语句 1、while 循环 while CONDITION; do     循环体 done CONDITION :循环控制条件;进入循环之前,先做一次判 断;每一次循环之后会再次做判断;条件为“true” ,则执行 一次循环;直到条件测试状态为“false” 终止循环 因此:…

    Linux干货 2016-08-18
  • openssl基本应用

    导言: 我们知道在互联网上进行文件传输、电子邮件商务往来存在许多不安全因素,特别是对于一些大公司和一些机密文件在网络上传输,所以为了保证安全,我们必须给文件加密。今天,我们就来谈谈加密、解密、openssl的使用以及CA的实现过程。 数据的3大加密方式 对称加密 含义 指加密解密使用同一组密钥,是按数据分块以后进行加密的,前后数据块彼此之间有关联关系。 特性…

    Linux干货 2016-12-05
  • shell脚本编程之判断语句

    一、单分支if语句     格式:if 判断条件;then        statement1        statement2          …     &nb…

    Linux干货 2016-01-01
  • 如何查看当前系统版本的版本号

    作为一名系统管理员,了解系统版本号是必然。因为不同大版本之间的命令和启动流程等之间有很大的差异;     一、在/etc/system-release 里面查看         ~]#ls -l /etc/system-release &n…

    Linux干货 2016-07-29
  • 运维工程师技能需求排行

    这是我今天在拉勾网搜索运维,翻完了4四页也招聘信息之后得到的,我的目的是想要看看之后的学习,哪个更应该成为重点,有些在我意料之中,有些还真的没想到,算是努力了一个小时的收获吧,分享给大家。
    注意:其中的看法仅代表个人观点,很多都是依靠我自己的学习经验和工作经验累积的

    Linux干货 2017-12-12

评论列表(2条)

  • stanley
    stanley 2015-03-27 23:27

    帮你格式化了代码段和字体的调整,这样的调整会使文章整体看起来更为专业美观。 请提交前多使用预览功能。

    • 蝙蝠侠•杰
      蝙蝠侠•杰 2015-03-28 11:44

      @stanley好的,谢谢了