博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux定时任务执行php任务
阅读量:6271 次
发布时间:2019-06-22

本文共 661 字,大约阅读时间需要 2 分钟。

首先用命令检查服务是否在运行

systemctl status crond.service

如果服务器上没有装有crontab ,则可以执行

yum install vixie-cronyum install crontabs

常用指令

systemctl restart crond.service #启动服务 systemctl reload crond.service #重新载入配置 systemctl status crond.service #查看crontab服务状态 systemctl enable crond.service #开机自启动

启动服务之后可以输入指令

crontab -e #进入定时任务编辑

相关参数

基本格式 :  * *   *  *  *  command  分  时  日  月  周  命令  第1列表示分钟1~59 每分钟用*或者 */1表示  第2列表示小时1~23(0表示0点)  第3列表示日期1~31  第4列表示月份1~12  第5列标识号星期0~6(0表示星期天)  第6列要运行的命令

例子

*/2 * * * * curl -o /home/index.html www.baidu.com #每隔两分钟使用curl 访问www.baidu.com 并将结果写入/home/index.html 文件

将后面的指令换成服务器php需要定时循环的任务接口即可

转载于:https://www.cnblogs.com/88phper/p/9486821.html

你可能感兴趣的文章
我的友情链接
查看>>
sql server 2005 (select查询语句用法)
查看>>
Spring整合Hibernate(1)
查看>>
3月7日作业
查看>>
python学习笔记(五)
查看>>
hebernate template 分页查询
查看>>
python开发之路SocketServer
查看>>
ARP Changes in Server 2008/Vista
查看>>
Linux主机安全笔记
查看>>
java 发送get和post请求
查看>>
动态加载JS,并执行回调函数
查看>>
go语言使用go-sciter创建桌面应用(七) view对象常用方法,文件选择,窗口弹出,请求...
查看>>
【翻译】优化基于ExtJS 4.1的应用
查看>>
ORACLE内存管理 之一 ORACLE PGA(转载)
查看>>
nmcli 使用记录---fatt
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
python自动化测试(4)-使用第三方python库技术实现
查看>>
微信随机红包的计算
查看>>
NFS
查看>>