Centos7 Ntp 时间服务器
安装环境
-
[root@m02 ~]# cat /etc/redhat-release
-
CentOS Linux release 7.4.1708 (Core)
安装时间服务器
yum -y install ntp
修改时间服务器配置文件
vim /etc/ntp.conf
修改时间权限
修改时间服务器
-
[root@m02 ~]# sed -i.org '8s#restrict.*noquery#restrict default nomodify#;21,24d;20a server ntp1.aliyun.com server time.nist.gov' /etc/ntp.conf
-
[root@m02 ~]# vim /etc/ntp.conf
Ntp服务与ntpdate有冲突!删除定时任务
启动时间服务器前修改时间
-
[root@m02 ~]# date -s 201001010
-
date: cannot set date: Invalid argument
-
Sun Oct 10 00:00:00 CST 20100
-
启动时间服务器
systemctl start ntpd.service
查看时间服务器状态
-
[root@m02 ~]# ntpq -p
-
remote refid st t when poll reach delay offset jitter
-
==============================================================================
-
time5.aliyun.co 10.137.38.86 2 u 32 64 3 5.193 4.852 1.151
-
time-c-b.nist.g .INIT. 16 u - 64 0 0.000 0.000 0.000
ntpstat查看时间同步状态
-
[root@m02 ~]# ntpstat
-
unsynchronised
-
time server re-starting
-
polling server every 8 s
查看时间有没有改回来
-
[root@m02 ~]# date
-
Wed Nov 15 16:53:40 CST 2017
客户端配置
写入定时任务
echo "*/5 * * * * /usr/sbin/ntpdate ntp 172.16.1.71 &>/dev/null"