赞
踩
服务器设置
查看是否安装了NTP软件包(默认是安装的),有下面两行则是已安装
# pkginfo | grep ntp
system SUNWntpr NTP, (Root)
system SUNWntpu NTP , (Usr)
1、拷贝ntp服务器配置样本作为ntp配置文件
# cp -p /etc/inet/ntp.server /etc/inet/ntp.conf
2、编辑ntp.conf,进行服务器配置
# vi /etc/inet/ntp.conf
将原文件中
server 127.127.XType.0 prefer
fudge 127.127.XType.0 stratum 0
两行的XType改成1,1表示local,即
server 127.127.1.0 prefer
fudge 127.127.1.0 stratum 0
并注释掉文件末尾的四行内容,否则会提示找不到/etc/inet/ntp.keys文件
#keys /etc/inet/ntp.keys
#trustedkey 0
#requestkey 0
#controlkey 0
3、启动ntp服务
Solaris 8 & 9
# /etc/rc2.d/S74xntpd stop
# /etc/rc2.d/S74xntpd start
Solaris 10
# svcadm disable svc:/network/ntp:default
# svcadm enable svc:/network/ntp:default
查看状态
# svcs svc:/network/ntp:default
如果显示为online则正常
如果显示为maintenance,需要执行一下
# svcadm clear svc:/network/ntp:default
再查看是否恢复正常
4、稍等一段时间后查看服务器状态
# ntpq -p
remote refid st t when poll reach delay offset disp
==============================================================================
*LOCAL(0) .LCL. 0 l 51 64 377 0.00 0.000 10.06
如果看到LOCAL前面有*了,则服务器工作正常。
客户端设置
1、创建ntp客户端配置文件
# touch /etc/inet/ntp.conf
# chown root:sys /etc/inet/ntp.conf
2、编辑ntp.conf,设置同步时间的服务器
# vi /etc/inet/ntp.conf
内容如下:
server server1-ip-address prefer
server server2-ip-address
server server3-ip-address
将其中的server-ip-address换成服务器的IP地址。如果只有一台服务器,填写第一行就可以,如果有多台服务器提供冗余,可一并写上,并在首选服务器后添加prefer标志。
3、启动ntp服务(与服务器设置的第三步相同)
Solaris 9
# /etc/rc2.d/S74xntpd stop
# /etc/rc2.d/S74xntpd start
Solaris 10
# svcadm disable svc:/network/ntp:default
# svcadm enable svc:/network/ntp:default
查看状态
# svcs svc:/network/ntp:default
如果显示为online则正常
如果显示为maintenance,需要执行一下
# svcadm clear svc:/network/ntp:default
再查看是否恢复正常
4、稍等一段时间后查看同步情况
# ntpq -p
remote refid st t when poll reach delay offset disp
==============================================================================
*pcp379652pcs.cn .LCL. 1 u 62 64 377 0.93 -26.011 0.87
看到前面出现*,并且reach值不断变大,disp值不断变小,则工作正常。
[3]Check NTP Service Running :
root@testserver01 # ps -ef|grep ntp
root 5192 1 0 17:14:29 ? 0:00 /usr/lib/inet/xntpd
root 5408 4717 0 17:52:45 pts/2 0:00 grep ntp
[4]Check Client and Server時間差:
root@testserver01 # ntpdate -q 10.87.0.9
server 10.87.0.9, stratum 11, offset -0.000428, delay 0.02727
6 Jun 17:59:47 ntpdate[10012]: adjust time server 10.87.0.9 offset -0.000428 sec
[5]Stop Auto-Sync,Start Manual-Sync:
root@testserver01 # ntpdate 10.87.0.9
6 Jun 18:13:34 ntpdate[10018]: the NTP socket is in use, exiting
root@testserver01 # ps -ef|grep ntp
root 10019 9907 0 18:13:52 pts/1 0:00 grep ntp
root 9988 1 0 17:22:16 ? 0:00 /usr/lib/inet/xntpd
root@testserver01 # kill -9 9988
root@testserver01 # ps -ef|grep ntp
root 10023 9907 0 18:15:41 pts/1 0:00 grep ntp
root@testserver01 # ntpdate 10.87.0.9
6 Jun 18:15:48 ntpdate[10025]: adjust time server 10.87.0.9 offset -0.000834 sec
root@testserver01 # ps -ef|grep ntp
root 10026 9907 0 18:16:02 pts/1 0:00 grep ntp
root@testserver01 # ntpdate 10.87.0.9
6 Jun 18:16:07 ntpdate[10028]: adjust time server 10.87.0.9 offset 0.000447 sec
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。