Hello,
I’m trying to create backup cronjobs. When I run the same command in the console, its working. But when the cronjobs will be executed in crontab nothing happens.
Manually line:
/bin/tar -czf /var/backup_websites/weekly/all_websites.tar.gz /var/www
Cronjob line:
14 11 * * * /bin/tar -czf /var/backup_websites/weekly/all_websites.tar.gz /var/www
I did already change the timezone, this can’t be the problem. I think it is a problem with my permissions, but I did set permissions on 777 for the backup folders (backup_websites and weekly).
I hope someone can help me with this problem, thanks in advance.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi @dionjakobs,
I’ve tested command you provided and I can say it’s working flawless. The only thing what I can’t see is what crontab are you executing.
Please note, if you have non-root user (e.g. if you followed Initial Server Setup) there is difference between
- crontab -e
and
- sudo crontab -e
The first one (crontab -e) is creating crontab for your current user.
The second one (sudo crontab -e) is creating crontab for root user. With root user, you should not have any problem as it have full permissions on every file/folder.
If you have only root user, it should be working as on root, both sudo crontab -e and crontab -e opens same file. But if user is not root, it is not the case.
My you should try some debugging by writing to files, but I for me &>> or any combination of that was not working so I’m not including it.
Just to note * * * * * will make your command execute every minute, so it is good for debugging.
Good luck with it mate :)
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.