码迷,mamicode.com
首页 > 系统相关 > 详细

linux ntp 时间同步

时间:2017-11-24 19:01:14      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:linux ntp   pool   启动服务   时间同步   服务   service   tar   .sh   /etc   

一.时间同步服务器
可以将数据库服务器作为同步服务器
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   pool   启动服务   时间同步   服务   service   tar   .sh   /etc   

原文地址:http://www.cnblogs.com/myibm/p/7891719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!