我有一台使用 Linux 19.04 的服务器
首先我做的是:nano /etc/crontab
以下内容已在文件中
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
13 * * * * root cd / && run-parts --report /etc/cron.hourly
18 00 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
33 00 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
43 00 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#
#
我在行末添加了这行
*/1 * * * * curl -s "https://www.example.com/abc" > /dev/null
答案1
我不知道这个文件是否为此目的而制作,我通常使用标准的 cron 功能定期运行作业,但也许这是可行的。但是,正如您所见,此文件中有一个用户字段,因此您也应该填写它,之后,为确保万无一失,您应该重新启动 cron:
sudo systemctl 重启 cron.service