centos下添加定时执行php脚本任务

1.首先查找php安装目录whereis php 我的php安装目录为/usr/bin/   即/usr/bin/php

2.crontab -e (进入编辑模式)

3.我的php脚本在/usr/share/nginx/html/php_shell/下 (每十分钟执行一次)

  */10 * * * * /usr/bin/php /usr/share/nginx/html/php_shell/updateGoods.php

4.查看是否执行php

  tail -f /var/log/cron  查看定时执行的脚本情况

 

crontab参数:

第1列分钟1~59
第2列小时1~23(0表示子夜)
第3列日1~31
第4列月1~12
第5列星期0~6(0表示星期天)

 

centos下添加定时执行php脚本任务,布布扣,bubuko.com

centos下添加定时执行php脚本任务

上一篇:C++新特性 右值引用 移动构造函数


下一篇:android基础知识13:AndroidManifest.xml文件解析