Report this

What is the reason for this report?

Ubuntu 14.04 x64 crontab doesn't work for 1 command.

Posted on August 7, 2015

Following is the content of my crontab file.

*/1 * * * * echo “Run this command every minute” >> log_example */1 * * * * cd ~/app && source cron_server.sh */1 * */2 * * > ~/log_cron_server

The issue is that the second command doesn’t execute or at least it doesn’t give the desired output. It is supposed to run the script to restart my server if it turns off.

But the interesting fact is that when I run the command directly into shell, it just works. That is, $ cd ~/app && source cron_server.sh restarts my server.

Can you please help me in understanding the problem here?



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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Even replacing the path of the sh file it doesn’t work. Any solution for this issue ?

~ stands for your home directory. Since cron may not have this information, try replacing it with full path.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.