码迷,mamicode.com
首页 > 系统相关 > 详细

Linux定时任务

时间:2014-06-09 15:01:26      阅读:438      评论:0      收藏:0      [点我收藏+]

标签:c   class   blog   a   http   tar   

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");

 ?>

Linux定时任务,布布扣,bubuko.com

Linux定时任务

标签:c   class   blog   a   http   tar   

原文地址:http://www.cnblogs.com/yun007/p/3776566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!