Bootstrap

crontabs 定时任务 sudo错误 及 常用命令

centos 7

1、安装 crontabs服务并设置开机自启:

yum install crontabs
systemctl enable crond
systemctl start crond

2、配置定时规则

vim /etc/crontab

在配置文件中配置你的定时执行规则
每4小时0分钟,执行

# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name  command to be executed

0 */4 * * * root /home/pm2Restart.sh
每隔30分钟root执行一次pm2Restart.sh
*/30 * * * * root pm2Restart.sh

*  */2  *  *  *root pm2Restart.sh   每2小时执行一次。*之间有空格

每天早上5点定时重启系统:
0 5 * * * root reboot


 * :表示任意的时刻;如小时位 * 则表示每个小时
 n :表示特定的时刻;如小时位 5 就表示5时
 n,m :表示特定的几个时刻;如小时位 1,10 就表示1时和10
;