赞
踩
[root@centos-a2 ~]# yum install chrony #安装chrony服务,需要保证镜像源可用
[root@centos-a2 ~]# rpm -ql chrony| grep chrony.conf #查找chrony的配置文件所在位置
[root@centos-a2 ~]# vim /etc/chrony.conf #修改配置文件
server 时间服务器地址 iburst
[root@centos-a2 ~]# systemctl restart chronyd.service #重启时间服务
[root@centos-a2 ~]# chronyc sources #同步时间,chrony同步时间有一个周期,因此可能需要等待一会儿才能够同步成功,为*则表示同步成功
同步成功
配置文件/etc/chrony.conf部分参数说明
可以使用chrony 将本机作为网络上时间服务器的客户端,和网络上的时间服务器保持一致,自动同步
可以使用chrony 将本机作为上层时间服务器,提供时间同步服务向网络上的服务器提供时间校正服务
对外提供时间同步服务
放行防火墙
[root@centos-a2 ~]# firewall-cmd --permanent --add-service=ntp
success
[root@centos-a2 ~]# firewall-cmd --reload
success
开启选项
[root@centos-a2 ~]# vim /etc/chrony.conf #修改配置文件
# Allow NTP client access from local network.
allow 192.168.196.0/24 #允许向本机同步时间的网段
# Serve time even if not synchronized to a time source.
local stratum 10 #如果本机向网络时间源同步,同时也在向其他服务器提供时间服务,则开启,如果本机没有向上层服务器同步时间,将自己作为时间源可不用开启
root@centos-a2 ~]# systemctl restart chronyd.service
Centos-A1修改chrony.conf配置文件,添加Centos-A2时间服务器
[root@Centos-A1 ~]# systemctl restart chronyd.service #重启服务
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。