码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 7.5操作系统下定时更新系统时间

时间:2020-02-18 09:51:36      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:uid   shell   run   etc   通过   任务   user   centos 7   color   

一、前期说明

场景:服务器可以正常访问互联网的情况下

方法:通过shell+crond来让其实现每隔5分钟更新一次系统时间

二、shell脚本

脚本名称:update_os_time.sh

存放位置: /server/scripts/

注意事项:请检查是否存在ntpdate命令,若没有,则用yum install ntpdate -y命令进行安装

#!/bin/bash
#
# Define variables
RETVAL=0
Ntp_server=(
ntp.aliyun.com
ntp1.aliyun.com
ntp2.aliyun.com
ntp3.aliyun.com
ntp4.aliyun.com
ntp5.aliyun.com
ntp6.aliyun.com
ntp7.aliyun.com
)

# Determine the user to execute
if [ $UID -ne $RETVAL ];then
   echo "Must be root to run scripts"
   exit 1
fi

# Load locall functions library
[ -f /etc/init.d/functions ] && source /etc/init.d/functions

# Install ntpdate command
yum install ntpdate -y >/dev/null 2>&1 

# for loop update os time
for((i=0;i<${#Ntp_server[*]};i++))
do
	/usr/sbin/ntpdate ${Ntp_server[i]} >/dev/null 2>&1 &
	RETVAL=$?
	if [ $RETVAL -eq 0 ];then
	   action "Update os time" /bin/true
	   break
	  else
	   action "Update os time" /bin/false
	   continue
	fi
done

# Scripts return values
exit $RTVAL

三、定时任务中的设置

[root@node33 ~]# crontab -l|head -2
# Crond update os time. USER:chenliang TIME:2020-02-17
*/05 * * * * /bin/sh /server/scripts/update_os_time.sh >/dev/null 2>&1

 

CentOS 7.5操作系统下定时更新系统时间

标签:uid   shell   run   etc   通过   任务   user   centos 7   color   

原文地址:https://www.cnblogs.com/chenliangc/p/12324633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!