linux ntp 时间同步

Posted cnblogs_2015

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux ntp 时间同步相关的知识,希望对你有一定的参考价值。

一.时间同步服务器
可以将数据库服务器作为同步服务器
ntp.conf 保持不变

//启动服务
service ntpd start

//设置ntpd服务自启动
chkconfig ntpd on
//检查
chkconfig --list ntpd

二.客户端配置
1. 修改ntp.conf的server配置项。
注释掉所有预定义的server时间同步服务器地址配置,如#server 0.rhel.pool.ntp.org
添加server 192.168.20.119 

2.停掉 ntpd 服务:service ntpd stop
不停无法使用ntpdate服务进行同步。

3.保证时间与服务器时间相差不到15分钟内。
首先使用ntpdate 192.168.20.119进行手动同步。
=> 同步失败
ntpdate 192.168.20.119
no server suitable for synchronization found
建议在5分钟之后; ntp服务端口没封;

=> 同步成功
ntpdate 192.168.20.119
23 Nov 15:02:51 ntpdate[10819]: step time server 192.168.20.119 offset 724.435543 sec

4.添加定时任务
vi /etc/cron.hourly/mydate.sh
添加如下内容:
#!/bin/sh
ntpdate 192.168.20.119






















以上是关于linux ntp 时间同步的主要内容,如果未能解决你的问题,请参考以下文章

Linux配置NTP时间同步

linux ntp时间同步配置

linux ntp 时间同步

Linux系统之时间同步方法

linux ntp时间同步

linux ntp时间同步