安装ntp时间服务器
操作系统版本
cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
1.yum install -y ntp
2.vi /etc/ntp.conf //添加如下
restrict default nomodify //nomodify客户端可以同步
server ntp1.aliyun.com //将默认时间同步源注释改用可用源
3.然后启动NTP服务
注意:如果有同步时间的定时任务要将其注销,否则会冲突
service ntpd start
4.设置开机自启动
chkconfig ntpd on
5.局域网内客户端定时任务同步本地ntp服务器
客户机要等几分钟再与新启动的ntp服务器进行时间同步,否则会提示
no server suitable for synchronization found错误
ntpq -p //查看远程同步主机
ntpstat //查看是否通
[[email protected] ~]# ntpstat
unsynchronised
time server re-starting
polling server every 8 s
和远程同步,大概需要5-10分钟
部署chrony时间同步服务
1.yum -y install chrony
2.cp /etc/chrony.conf{,.bak}
3.vi /etc/chrony.conf
Use public servers from the pool.ntp.org project.
Please consider joining the pool (http://www.pool.ntp.org/join.html).
#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
server ntp2.aliyun.com //同步阿里云时间服务器
Allow NTP client access from local network.
#allow 192.168.0.0/16
allow 172.16.1.0/24 //允许的网段/主机同步
4.systemctl start chronyd //启动chrony
客户端同步
[[email protected] ~]# ntpdate 172.16.1.62
13 Mar 18:13:29 ntpdate[2623]: step time server 172.16.1.62 offset -28801.104993 sec
原文地址:http://blog.51cto.com/674564591/2086970