crontab每秒执行URL接口
Posted 讲做
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了crontab每秒执行URL接口相关的知识,希望对你有一定的参考价值。
首先crontab -e打开进行编辑
添加以下代码(默认为每秒执行一次脚本crontab.sh):
* * * * * /bin/sh /var/www/aa/crontab.sh
下面是/var/www/aa/crontab.sh脚本代码
#!/bin/bash
i=0;
step=2 #间隔的秒数,不能大于60
while [ $i -lt 60 ]
do
$(curl ‘http://api-test-monitor.shanxinhui.com/user/test2/aa‘)
sleep $step
i=`expr $i + 2`
done
exit 0
以上是关于crontab每秒执行URL接口的主要内容,如果未能解决你的问题,请参考以下文章
centos 8利用crontab设置定时任务,crontab每秒运行