linux命令crontab

时间:2023-12-24 11:45:49

1.需求

服务端计划任务执行

2.例子

要先安装linux上的crond服务

http://www.cnblogs.com/binblogs/p/5206789.html

使用crontab命令

参考:http://justjavac.com/other/2013/09/22/linux-scheduled-task-crontab.html

是否成功启动crond

* * * * * echo 123 >> /home/denglinjie/testFile

3.注意

执行php脚本的格式,先写php的绝对路径,在写php脚本的绝对路径,如下
* * * * * /usr/bin/php /webserver/www/wx.com/index.php 如何访问某一个url
* * * * * /usr/bin/curl   url  (url要双引号)
https://segmentfault.com/q/1010000004136449?_ea=502889

4.重启

1、Crontab重启

Linux:Service crond restart 或者/etc/init.d/crond restart