Ubuntu
In my Ubuntu VM, I have configured a cronjob
cat /var/spool/cron/crontabs/*
MAILTO="myemail@gmail.com"
* * * * * python /home/forge/web-app/database/backup_mysql.py
I checked pgrep cron
I got number printing out fine.
It been 5 mins now, I don't see any email send to me. I don't see any backup file is being generated.
I have a feeling that this cronjob never got run.
How do I debug this ?
Do I need to restart some kind of service ?