当前位置: > Ubuntu >

ubuntu ntp时间同步服务器搭建与使用

时间:2016-06-08 17:29来源:linux.it.net.cn 作者:IT

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服务器的时间。




(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容