内网同步时间
1.修改时间同步服务器为标准时间
date -s "2018-09-02 04:23:45"
clock -w 把时间写入cmos(一个RAM芯片)
2. 修改chrony配置文件
服务端,开启
vim /etc/chrony.conf
server 10.253.19.175 iburst
allow 10.253.0.0/16 允许或者拒绝客户端ip同步时间
local stratum 10 # 当chrony服务器提供的时间不可用时,采用本地时间作为同步标准继续作为时间服务器让其他主机来同步时间
#重启并设为开机自启
systemctl restart chronyd
systemctl enable chronyd
关闭防火墙
systemctl stop firewalld
systemctl disable firewalld
关闭selinux
setenforce 0
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
客户端
vim /etc/chrony.conf
server 10.253.19.175 iburst #修改为要同步的服务器IP
#重启并设为开机自启
systemctl restart chronyd
systemctl enable chronyd
同样关闭firewalld, selinux
验证
chronyc sources -v
clockdiff -o 10.0.0.10 #查看和服务端的时间偏差
努力生活,融于自然