首页 > 代码库 > Linux定时任务
Linux定时任务
crontab 每分钟、每小时、每天、每周、每月、每年定时执行
每五分钟执行 */5 * * * *
每小时执行 0 * * * *
每天执行 0 0 * * *
每周执行 0 0 * * 0
每月执行 0 0 1 * *
每年执行 0 0 1 1 *
linux定时执行url链接
使用了两种办法做计划任务,但均以失败
1.crontab -e里面写的是* * * * * /usr/bin/php http://localhost/nh/index.php/Crontab/addLevel
但是报错:Could not open input file: http://localhost/nh/index.php/Crontab/addLevel(防火墙已经关闭)
2,crontab -e 里面写的是* * * * * /usr/bin/php /home/wwwroot/default/nh/test.php 但是报错:PHP Warning: Cannot modify header information - headers already sent by (output started at /home/wwwroot/default/nh/test.php:2) in /home/wwwroot/default/nh/test.php on line 3
其中第二种方法test.php为
<?php
Header("Location:http://127.0.0.1/nh/index.php/Crontab/addLevel");
?>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。