《2022年时间同步设置 .pdf》由会员分享,可在线阅读,更多相关《2022年时间同步设置 .pdf(4页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、注意事项时间同步使用的端口是UDP 123, 要确认 ACL没有限制此端口。 PV时间服务器的IP地址是,172.25.254.1 和 172.25.25.42。确定本机和时间服务器之间的时间偏移量的方法:- AIX: ntpdate -d 172.25.254.1 - Linux: ntpdate -q 172.25.254.1 - Windows: w32tm /stripchart /computer:172.25.254.1 /samples:1 /dataonly 确定时区的方法:- Windows: w32tm /tz - Linux: cat /etc/sysconfig/clo
2、ck - AIX: echo $TZ BIOS时间和系统时间:- Linux: hwclock -systohc, 把硬件时钟设置为和当前系统时间一致。- Windows: 系统时间会自动保存在BIOS的时钟里面。Windows 时间同步设置:w32tm /config /syncfromflags:manual /manualpeerlist:172.25.254.1 172.25.254.2 重启服务:net stop w32time net start w32time 立即同步:w32tm /resync 查看跟时间服务器的偏移量:w32tm /stripchart /computer:
3、172.25.254.1 /samples:1 /dataonly 如果需要修改时间同步的频率,修改注册表:HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesW32TimeTimeProvidersNtpClient 里的 SpecialPollInterval 值为比如3600 秒。名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 4 页 - - - - - - - - - Linux 时间同步介绍 ntpd Linux 系
4、统下,一般使用ntp 服务器来同步不同机器的时间。一台机器,可以同时是 ntp 服务器和 ntp 客户机。使用 ntpd 服务,要好于ntpdate 加 cron 的组合。因为,ntpdate 同步时间,会造成时间的跳跃,对一些依赖时间的程序和服务会造成影响。比如sleep,timer 等。而且, ntpd 服务可以在修正时间的同时,修正cpu tick。要注意的是, ntpd 有一个自我保护设置: 如果本机与上源时间相差太大, ntpd 不运行 . 所以新设置的时间服务器一定要先ntpdate 从上源取得时间初值, 然后启动ntpd 服务。 ntpd 服务运行后 , 先是每 64 秒与上源服
5、务器同步一次, 根据每次同步时测得的误差值经复杂计算逐步调整自己的时间, 随着误差减小 , 逐步增加同步的间隔 . 每次跳动 , 都会重复这个调整的过程. ntp 服务,默认只会同步系统时间。如果想要让ntp 同时同步硬件时间,可以设置/etc/sysconfig/ntpd 文件:SYNC_HWCLOCK=yes 配置同步/etc/ntp.conf是 NTP daemon 的主要设文件,也是NTP 唯一的设定文件。修改 ntp.conf 文件,配置为: restrict 127.0.0.1 restrict -6 :1 restrict default mask 0.0.0.0 noquery
6、 nomodify notrap restrict 172.25.254.1 mask 255.255.255.255 nomodify notrap noquery server 172.25.254.1 prefer restrict 172.25.254.2 mask 255.255.255.255 nomodify notrap noquery server 172.25.254.2 其他配置可以全部注释掉,或者删除。在启动 NTP服务前,先对提供服务的这台主机手动的校正一次时间,启动服务器,端口会被服务端占用,就不能手动同步时间了。名师资料总结 - - -精品资料欢迎下载 - - -
7、 - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 4 页 - - - - - - - - - ntpdate 172.25.254.1 service ntpd start 查看 ntp 服务同步状态:ntpstat 返回:synchronised to NTP server (172.25.254.1) at stratum 3 time correct to within 358 ms polling server every 64 s 说明已经同步成功。AIX 时间同步配置介绍 xntpd xntpd 是一个关于网络时
8、间协议的守护进程,它遵循了因特网时间服务器的通用标准。在启动xntpd 时, xntpd 会读取/etc/ntp.conf 配置文件来确定网络中系统时钟服务器,以ntp 服务器的系统时间为标准,来调整本机的系统时间。可以用 ntpq 命令来显示xntpd 进程的内部变量。使用ntp 时应注意, xntpd 服务器和xntpd 客户端的时钟不能相差超过1000 秒。若有大于1000 秒的偏移,在客户端启动xntpd 守护进程前,用data 命令或ntpdate 命令调整本机的系统时间,使偏移量在1000 秒之内。然后启动xntpd. 配置同步编辑时间同步配置vi /etc/ntp.conf 注释
9、掉第一行:broadcastclient 添加两行:server 172.25.254.1 prefer server 172.25.254.2 启动 xntpd ,DB服务器注意加 -x 参数防止时间往回调:名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 4 页 - - - - - - - - - startsrc -s xntpd -a -x 编辑 /etc/rc.tcpip ,使重启后时间同步服务能自动启动:找到这一段:# Start up Network Time
10、 Protocol (NTP) daemon #start /usr/sbin/xntpd $src_running 修改为:# Start up Network Time Protocol (NTP) daemon start /usr/sbin/xntpd $src_running -x 机器时间跟时间服务器相差在1000 秒内, xntpd 服务才会与时间服务器进行同步。如果时间相差在1000 秒外,可以进行一次手工同步:ntpdate -d ntpserver_ip xntpd 同步状态查询使用#lssrc -ls xntpd, 刚启动 xntpd 时 , sys peer 为 ins
11、ane, 表明 xntpd 还没有完成同步。lssrc -ls xntpd Program name: -/usr/sbin/xntpd Version: -3 Leap indicator: 11 (Leap indicator is insane.) Sys peer: -no peer, system is insane . 等待 6-10 分钟后, sys peer 就不再是insane 了,说明已经正常同步。lssrc -ls xntpd Program name: -/usr/sbin/xntpd Version: -3 Leap indicator: 00 (No leap second today.) Sys peer: -127.127.1.0 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 4 页 - - - - - - - - -