符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
禹州ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为创新互联建站的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!
? 编辑 /etc/ntp.conf文件,内容如下:
----------------------------
#broadcastclient
server 210.72.145.44 prefer
server 218.21.130.42
server 127.127.1.0
driftfile /etc/ntp.drift
tracefile /etc/ntp.trace
----------------------------
请注意文件中的 server 127.127.1.0这一行,此处的127.127.1.0是一特殊的地址,表示NTP主服务器是与自身的系统时钟同步.
? 然后启动xntpd服务
#startsrc -s xntpd
0513-059 The xntpd Subsystem has been started. Subsystem PID is 7274732.
? 查看xntpd状态:
#l***c -ls xntpd
Program name: /usr/sbin/xntpd
Version: 3
Leap indicator: 11 (Leap indicator is insane.) //初始化未完成
Sys peer: no peer, system is insane //初始化未完成
Sys stratum: 16 //初始化未完成
Sys precision: -17
Debug/Tracing: DISABLED
Root distance: 0.000000
Root dispersion: 0.000000
Reference ID: no refid, system is insane //初始化未完成
Reference time: no reftime, system is insane //初始化未完成
Broadcast delay: 0.003906 (sec)
Auth delay: 0.000122 (sec)
System flags: bclient pll monitor filegen
System uptime: 40 (sec)
Clock stability: 0.000000 (sec)
Clock frequency: 0.000000 (sec)
Peer: 127.127.1.0
flags: (configured)(refclock)
stratum: 3, version: 3
our mode: client, his mode: server
Peer: 218.21.130.42
flags: (configured)
stratum: 16, version: 3
our mode: client, his mode: unspecified
Peer: 210.72.145.44
flags: (configured)(preferred)
stratum: 16, version: 3
our mode: client, his mode: unspecified
Subsystem Group PID Status
xntpd tcpip 7274732 active
等待 6 - 10分钟后, sys peer就不再是 'insane'了.
? 在/etc/ntp.conf中添加
server 192.168.15.92
driftfile /etc/ntp.drift
tracefile /etc/ntp.trace
? 编辑好 /etc/ntp.conf后,启动xntpd守护进程
# startsrc -s xntpd
? xntpd 状态查询 ,使用 #l***c -ls xntpd
刚启动xntpd时, sys peer为 'insane',表明xntpd还没有完成同步, .
#l***c -ls xntpd
Peer: 192.168.1.1
? NTP客户端查询NTP服务器 //可选
ntp客户端使用 ntpdate命令来确认是否可用指定的 ntp服务器进行时间同步。
命令的结果会显示客户端与服务器的时间偏移。
#ntpdate -d 192.168.15.92
? 通过调用smitty,使 xntpd在以后重启服务器时能自动启动。
# smit xntpd
选择Start Using the xntpd Subsyste
选择BOTH方式,表示立即启动以及系统下次启动的时候将自动启动
通过如下命令可以看到,其实xntpd是tcpip服务组的一个子服务而已
#l***c -g tcpip
Subsystem Group PID Status
inetd tcpip 303118 active
snmpd tcpip 651356 active
xntpd tcpip 589898 active
……
同样,/etc/rc.tcpip可以看到如下的内容,表示该服务随TCPIP服务组一起启动
# Start up Network Time Protocol (NTP) daemon
start /usr/sbin/xntpd “$src_running”
客户端与服务器端的时间偏移量过大,因此即使启动客户端xntpd守护进程也会导致客户端无法与服务器端进行时间同步,ntp进程会自动关闭,需要先手动修改时间,再做ntp同步
以下正常输出:
带*号说明以该ip服务器同步
? 配置ntp.conf
#vi /etc/ntp.conf
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
driftfile /var/lib/ntp/drift
keys /etc/ntp/keys
server 192.168.15.92 prefer
? 重启ntp服务
#service ntpd restart
? 查看ntp
# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
LOCAL(0) .LOCL. 10 l 17 64 17 0.000 0.000 0.001
*192.168.15.92 LOCAL(0) 4 u 29 64 17 0.397 -2.224 0.786
带*号说明以该IP为NTP时间同步
备注:域模式下的windows无法使用NTP
? FAQ
A1:如果执行ntpq –p报
Temporary failure in name resolution
Q1:是hosts文件没有127.0.0.1记录
在hosts文件里添加127.0.0.1
127.0.0.1 localhost.localdomain localhost
再重启ntp服务
#Service ntpd restart
A2:如果执行ntpq –p报
read: A remote host refused an attempted connect operation
Q2:系统时间和ntp时间相差太大,需要手动调整
手动调整时间,再重启ntp服务