UX B.11.31 NTP时间同步服务实施案例集锦(4)

6.命令模式手工同步NTP(临时有效)
[root@TJ-Unicom-Group-Gn-01 ~]#  ntpdate 10.3.64.61                                                NTP命令模式,手工同步NTP
15 Aug 13:57:53 ntpdate[1187]: step time server 10.3.64.61 offset 243.079201 sec      补偿243秒
15 Aug 14:08:28 ntpdate[11893]: step time server 10.3.64.61 offset 315.259333 sec    补偿315秒
注意:
[root@TJ-Unicom-Group-Gn-03 ~]# ntpdate 10.3.64.61                                 
15 Aug 15:30:46 ntpdate[12948]: adjust time server 10.3.64.61 offset 0.385539 sec
[root@TJ-Unicom-Group-Gn-03 ~]# service ntpd status
ntpd is stopped
[root@TJ-Unicom-Group-Gn-03 ~]# service ntpd start                     当启动NTP服务后,在使用ntpdate 10.3.64.61【NTP在使用套接字,退出】
Starting ntpd: [  OK  ]
[root@TJ-Unicom-Group-Gn-03 ~]# service ntpd status
ntpd (pid  12975) is running...
[root@TJ-Unicom-Group-Gn-03 ~]# ntpdate 10.3.64.61
15 Aug 15:31:05 ntpdate[12986]: the NTP socket is in use, exiting
7.开机自动启动NTP服务
[root@TJ-Unicom-Group-Gn-03 ~]# chkconfig --help                                     打开帮助
chkconfig version 1.3.47 - Copyright (C) 1997-2000 Red Hat, Inc.
This may be freely redistributed under the terms of the GNU Public License.
usage:   chkconfig [--list] [--type <type>] [name]
         chkconfig --add <name>
         chkconfig --del <name>
         chkconfig --override <name>
         chkconfig [--level <levels>] [--type <type>] <name> <on|off|reset|resetpriorities>   
[root@TJ-Unicom-Group-Gn-03 ~]# chkconfig --list | grep ntp                          开机不启动时显示off,0~6指系统的运行级别
ntpd            0:off   1:off   2:off   3:off   4:off   5:off   6:off 
ntpdate         0:off   1:off   2:off   3:off   4:off   5:off   6:off
[root@TJ-Unicom-Group-Gn-02 etc]# chkconfig --level 2345 ntpd on               开机自动启动NTP服务  2345是系统运行级别
[root@TJ-Unicom-Group-Gn-02 etc]# chkconfig --list | grep ntp
ntpd            0:off   1:off   2:on    3:on    4:on    5:on    6:off                             开机自动启动显示on
ntpdate         0:off   1:off   2:off   3:off   4:off   5:off   6:off
[root@TJ-Unicom-Group-Gn-05 etc]# chkconfig --level 2345 ntpd on               开机自动启动显示on【中文版】
[root@TJ-Unicom-Group-Gn-05 etc]# chkconfig --list | grep ntp
ntpd            0:关闭  1:关闭  2:启用  3:启用  4:启用  5:启用  6:关闭
ntpdate         0:关闭  1:关闭  2:关闭  3:关闭  4:关闭  5:关闭  6:关闭
 
#############################################################################
 
HP-UX TJGRDB B.11.31 U ia64 2891597638 unlimited-user license
1.HP-Unix 设置时钟同步– NTP 配置文件模式(配置文件模式是长久有效,命令模式临时有效)
   NTP 修改配置文件/etc/ntp.conf
   #trustedkey 3 4 5 6 14           # define trusted keys
   #requestkey 15                      # key (7) for accessing server variables
   #controlkey 15                       # key (6) for accessing server variables
   #authdelay 0.000159             # authentication delay (SPARC4c/65 SS1+ MD5)
   server 10.3.64.61                   设置时钟服务器(源),重启NTP服务即可
   fudge  127.127.1.1     stratum 10
   ftfile /etc/ntp.drift
   启动/停止ntp服务
   TJGRDB[#/etc]/sbin/init.d/xntpd stop   如果NTP服务the NTP socket is in use, exiting,请先stop服务再start服务
   TJGRDB[#/etc]/sbin/init.d/xntpd start  启动NTP服务,服务只有启动/停止,没有重启选项
   TJGRDB[#/etc]ntpq -p            监视NTP->只有启动NTP服务才能监视NTP,否则ntpq: read: Can't assign requested address请求的地址不能指定。
       remote           refid      st t when poll reach   delay   offset    disp
   =============================================================================
   *10.3.64.61      132.174.32.151   5 u   28   64   37     0.64    7.971  878.46
   NTP命令模式,手工同步NTP服务(配置文件模式是长久有效,命令模式临时有效)
   TJGRAPP[#/etc]ntpdate 10.3.64.61
    7 Jul 11:35:27 ntpdate[6382]: step time server 10.3.64.61 offset 412.957168 sec   同步时间服务,补偿412.957168秒
   TJGRAPP[#/etc]ntpdate 10.3.64.61
    7 Jul 12:36:54 ntpdate[25942]: adjust time server 10.3.64.61 offset 0.123488 sec  调整时间服务,补偿0.123488
2.使用crontab设置时钟同步NTP的任务计划
   0-59/10 * * * * /usr/sbin/ntpdate 10.3.64.61 &>/ntplog     每隔10分钟同步一次NTP时间
   0 10 * * * /usr/sbin/ntpdate 10.3.64.61 > /ntplog               每天10点整同步一次NTP时间并把执行结果重定向到ntplog文件
   cron文件的目录和cron执行日志目录
   /var/spool/cron/crontabs/root      cron文件的目录
   /var/adm/cron/log                          cron执行日志

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/a1ba659cffb876cb3a78c71f28911bca.html