1、编写shell脚本
/data/test.sh
#! /bin/sh
第一种是通过curl方式调用
/usr/bin/curl http://www.xxxx.com/test/index >> /data/test.log
第二种是通过php直接执行php文件方式调用
/usr/bin/php /data/wwwroot/test.php >> /data/test.txt
2、添加定时任务
命令行输入:crontab -e
*/1 * * * * /data/test.sh >> /data/test.txt
保存并退出,然后重新加载crontab文件,或重启,上面是每分钟执行一次。
service crontab restart 重启
service crontab reload 重新加载