django-cron task not executing automatically

3.8k Views Asked by At

When I run python manage.py runcrons, the cron job successfully executes (prints 'Executed'). But it doesn't do it automatically. It's supposed to execute every minute as I've stated in the Class. Here's the code:

settings.py

CRON_CLASSES = [
    "app.views.MyCronJob"
]

app.views

class MyCronJob(CronJobBase):
    RUN_EVERY_MINS = 1

    schedule = Schedule(run_every_mins=RUN_EVERY_MINS)
    code = 'my_app.my_cron_job'    # not sure what this is supposed to be?

    def do(self):
        print('Executed')

Any idea?

2

There are 2 best solutions below

2
On

you also need to set up the crontab entry for the cron:

> crontab -e
*/5 * * * * source /home/ubuntu/.bashrc && source /home/ubuntu/work/your-project/bin/activate && python /home/ubuntu/work/your-project/src/manage.py runcrons > /home/ubuntu/cronjob.log

taken from official documentation

0
On

+1 for Ayush's answer. This worked for me.

crontab -e

This will open the editor, copy paste the following line at the bottom and save & close.

*/5 * * * * source /home/ubuntu/.bashrc && source /home/ubuntu/work/your-project/bin/activate && python /home/ubuntu/work/your-project/src/manage.py runcrons > /home/ubuntu/cronjob.log

In addition to this try rerunning these in your Django project directory:

python manage.py runcrons --force
service cron start