3

我的应用程序需要这 3 个 cronjobs 才能正常工作:

00 00 * * * wget http://www.mysite.com/cron/archivebenefits > /dev/null 2>&1
*/15 * * * * wget http://www.mysite.com/cron/archiveevents > /dev/null 2>&1
*/15 * * * * wget http://www.mysite.com/cron/sendlists > /dev/null 2>&1

我正在使用 AWS Elastic Beanstalk,问题是我无法设置它们。由于 cronjobs 运行远程请求,我也可以在我的服务器之外使用它们。有人有想法么?

注意:由于价格原因,为他们使用 EC2 实例是不可行的。

4

1 回答 1

3

你应该通过配置它们.ebextensions,在这里解释:http: //aws.typepad.com/aws/2012/10/customize-elastic-beanstalk-using-configuration-files.html

查看类似问题:AWS Elastic Beanstalk, running a cronjob

于 2013-06-03T18:15:09.657 回答