ntpdate立即同步

yum install ntpdate
sudo apt-get install ntpdate -y
#设置时区
timedatectl set-timezone Asia/Shanghai 
ntpdate 10.3.60.27 #立即同步
ntpdate ntp.ntsc.ac.cn
#腾讯云
ntpdate ntp.tencent.com
#阿里云
ntpdate ntp.aliyun.com

ntp1.cloud.tencent.com

阿里云
sudo apt-get install ntp -y
sudo apt-get install ntpdate -y


腾讯云
sudo apt-get install ntp 
vi /etc/ntp.conf
server ntp1.cloud.tencent.com iburst
server ntp2.cloud.tencent.com iburst
server ntp3.cloud.tencent.com iburst
server ntp4.cloud.tencent.com iburst 
#sudo service ntp restart 
systemctl restart ntp

ntp服务器

yum install -y ntp #同步服务器
systemctl start ntpd 
#查看运行状态 
ntpq -p 

vi /etc/ntp.conf
restrict 192.168.100.0 mask 255.255.255.0 nomodify notrap   (允许内网通讯)
server 127.127.1.0 #使用本机时钟

#如果能上网添加多个外网时钟
server 210.72.145.44 prefer (中国国家授时中心服务器地址 prefer表示优先 注意把默认的server更改成这样)    
server 218.21.130.42     (cn.pool.ntp.org的IP)    
restrict 0.0.0.0 mask 0.0.0.0 nomodify notrap noquery notrust (屏蔽其他IP过来更新时间)

定时同步时间服务器

crontab -e
* */1 * * * ntpdate time.nist.gov  #一小时同时一次
* * * * * ntpdate 10.3.60.40      #每分钟执行一交
*/5 * * * * ntpdate 10.3.60.40

#每周六凌晨1点同步一次
0 1 * * 6 ntpdate ntp.tencent.com
0 1 * * 6 ntpdate time.nist.gov


#周一凌晨1点同步一次时间
0 1 * * 1 ntpdate 10.3.60.40

crontab命令

crontab存放路径
/var/spool/cron/ 

crontabs
查看任务列表
crontab -l
查看服务
systemctl status crond
systemctl restart crond