服务器同步网络时间
#手动同步
[root@Centos7 ~]# date
Wed Mar 11 15:25:52 CST 2020
[root@Centos7 ~]# date -s "-1 month" #时间改为1个月前
Tue Feb 11 15:26:30 CST 2020
[root@Centos7 ~]# date
Tue Feb 11 15:26:32 CST 2020
[root@Centos7 ~]# ntpdate ntp1.aliyun.com
11 Mar 15:28:26 ntpdate[7997]: step time server 120.25.115.20 offset 2505599.999247 sec
[root@Centos7 ~]# date
Wed Mar 11 15:28:39 CST 2020
#ntp自动同步网络时间,并开启同步服务(同步较慢,大概每隔10~15分钟同步一次)
#centos7客户端与服务端时间差太多的时候,会同步失败,服务会出错
#服务端
rpm -q ntp || yum install ntp -y
vim /etc/ntp.conf
#restrict default nomodify notrap nopeer noquery #提供服务必须注释
server ntp1.aliyun.com iburst
systemctl restart ntpd
#客户端
vim /etc/ntp.conf
server 192.168.139.100 iburst
systemctl restart ntpd
#chrony自动同步网络时间,并开启同步服务(推荐使用)
#服务端
vim /etc/chrony.conf
server ntp5.aliyum.com iburst
allow 192.168.139.0/24
local stratum 10 #远程服务端连接不上时,依然提供同步服务
systemctl restart chronyd
#客户端
vim /etc/chrony.conf
server 192.168.139.100 iburst
systemctl restart chronyd
chronyc -n sources -v
#centos6客户端
vim /etc/ntp.conf
server 192.168.139.100 iburst
service ntpd restart
ntpq -p
网友评论