共计 1328 个字符,预计需要花费 4 分钟才能阅读完成。
在调节 NTP 时间的时候,请保证 123 端口畅通,或者未被占用 (使用 netstat - n 命令查看)。
假设时间服务器的地址如下:
Time Server Address:
Primary:192.168.1.254
Standby:192.168.1.253
AIX:
修改 /etc/ntp.conf 如下:
server 192.168.1.254 prefer
server 192.168.1.253
手动发起同步:
ntpdate 192.168.1.254
启动 NTP 服务:
startsrc -s xntpd
设置开机启动(其本质是修改了 /etc/rc.tcpip 文件):
/usr/sbin/chrctcp -S -a xntpd
HP-UX:
修改 /etc/ntp.conf 如下:
server 192.168.1.254 prefer
server 192.168.1.253
设置开机启动,并修改 boot NTP server:
修改 /etc/rc.config.d/netdaemons,找到两个字段修改如下:
export NTPDATE_SERVER=192.168.1.254
export XNTPD=1
手工发起同步:
ntpdate 192.168.1.254
启动服务:
/sbin/init.d/xntpd start
RedHat Linux:
修改 /etc/ntp.conf 如下:
server 192.168.1.254 prefer
server 192.168.1.253
手工发起同步:
ntpdate 192.168.1.254
启动 NTP 服务:
service ntpd start 或者 /etc/init.d/ntpd start
设置开机启动:
chkconfig ntpd on
检查设置:
chkconfig –list ntpd
SUSE Linux:
修改 /etc/ntp.conf 如下:
server 192.168.1.254 prefer
server 192.168.1.253
手工发起同步 (由于 Suse Linux 在 11 版本中摒弃了 ntpdate 命令,采用新的 sntp 命令进行操作,所以手工同步时间不能使用 ntpdate 了):
sntp -P no -r 192.168.1.254
启动 NTP 服务 (注意这里 ntp,没有“d”字样):
service ntp start 或者 /etc/init.d/ntp start
设置开机启动:
chkconfig ntp on
检查设置:
chkconfig –list ntp
参考阅读:
时间服务器 NTP 搭建 http://www.linuxidc.com/Linux/2013-04/82112.htm
Ubuntu 搭建 NTP 服务器 http://www.linuxidc.com/Linux/2013-03/80285.htm
CentOS 6.3 下 NTP 服务安装和配置 http://www.linuxidc.com/Linux/2012-12/76836.htm
Linux 下的 NTP 服务器 http://www.linuxidc.com/Linux/2013-07/88030.htm
RHCE 认证之 Rsyslog 日志管理、NTP 和 Rsync 备份同步 http://www.linuxidc.com/Linux/2013-10/91456.htm