码迷,mamicode.com
首页 > 其他好文 > 详细

ntp时间同步服务器

时间:2014-10-22 20:05:35      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:http   os   ar   使用   sp   on   art   html   ad   

ubuntu server ntp时间同步服务器安装及使用

一、服务端

1 apt-get install ntp

 

2 安装后默认启动服务,如果没有启动,启动之。

/etc/init.d/ntp start

 

3 vi /etc/ntp.conf 修改为如下

 

restrict default nomodify notrap noquery

restrict 127.0.0.1

restrict 10.91.0.0 mask 255.255.255.0 nomodify

server 0.pool.ntp.org

server 1.pool.ntp.org

server 2.pool.ntp.org

server  127.127.1.0     # local clock

fudge   127.127.1.0 stratum 10

 

driftfile /var/lib/ntp/drift

broadcastdelay  0.008

keys            /etc/ntp/keys

4 重启ntp服务

 

/etc/init.d/ntp restart

 

 二、客户端

 

1 使用ntpdate命令,如果不存在这个命令,则先安装apt-get install ntp

 

/usr/sbin/ntpdate 10.91.0.10 //即使用ip为10.91.0.10的ntp服务器同步时间

 

2 设置定时同步。

 

vi /etc/crontab

30 01 * * * /usr/sbin/ntpdate 10.91.0.10

 

系统便会在每天早上1点30分自动将系统时间同步到ntp服务器的时间。

 

当然这里crontab的时间是指客户端的时间,同步后等同于ntp服务器的时间。

ntp时间同步服务器

标签:http   os   ar   使用   sp   on   art   html   ad   

原文地址:http://www.cnblogs.com/hanxing/p/4044037.html

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