当前位置: > Linux教程 > 系统运维 >

linux同步时间的脚本---定时任务

时间:2018-12-17 15:06来源:linux.it.net.cn 作者:IT
进入定时任务编辑页面

crontab -e


编写每十分钟同步一次的脚本

*/10 * * * * /usr/sbin/ntpdate node01


保持与第一台机器时间上的同步,前提是要配好ssh免密登录
所以可能会缺少两个插件

yum -y install openssh-clients* //识别ssh-copy-id
yum install -y ntpdate //时间插件


查看定时任务内容

crontab -l


删除当前所有定时任务

crontab  -r


定时任务的开启|状态|关闭

service crond restart|status|stop
ps -ax |grep cron //状态

设置开机启动定时任务

chkconfig --add crond




(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容