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

前端之家收集整理的这篇文章主要介绍了ubuntu ntp时间同步服务器搭建与使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

转自<http://www.2cto.com/os/201111/110316.html>

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

原文链接:https://www.f2er.com/ubuntu/353162.html

猜你在找的Ubuntu相关文章