美文网首页
centos 定时任务

centos 定时任务

作者: Yuri1996 | 来源:发表于2020-05-19 14:44 被阅读0次

a、crontab -e,添加如下内容:

*/1 * * * * sh && echo "dd" >> /logs/cron-cc.log
*/1 * * * * sleep 30 && echo "cc" >> /logs/cron-cc.log

b、重启crond

systemctl reload crond
systemctl restart crond

service crond reload

c、查看当前用户定时任务

crontab -l

d、通过日志查看是否生效

tail -f /logs/cron-cc.log

相关文章

网友评论

      本文标题:centos 定时任务

      本文链接:https://www.haomeiwen.com/subject/qorbohtx.html