Linux配置时间服务
###安装ntp
yum install ntp
###启动ntp服务
systemctl start ntpd.service
设置开机启动
systemctl enable ntpd.service
修改配置文件,添加阿里云ntp服务器地址
vim /etc/ntp.conf
以下四行注释掉
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 ntp1.aliyun.com iburst
server ntp2.aliyun.com iburst
server ntp3.aliyun.com iburst
server ntp4.aliyun.com iburst
server ntp5.aliyun.com iburst
server ntp6.aliyun.com iburst
server ntp7.aliyun.com iburst
###重启ntpd服务
systemctl restart ntpd
检查服务(时间服务不是时时的可以间隔一会再检查)
ntpstat
date.com