I just created a cron task do a backup of a 10GB MySql file once every week. How do I test it?

Specifically it should run as the user, do the output email and error log of the cron task

link|improve this question

56% accept rate
feedback

3 Answers

up vote 2 down vote accepted

You can separate the testing of your script and cron-setup this way,

  1. Test your tool/script from the intended user login
    • verify that it works as expected (emails and logs, etc).
  2. Setup a trial run of issuing it 2 or three times in the next few minutes through cron
    • verify that the first run correctly as with expected results (similar to 1)
    • verify that the next runs continue to work correctly
      and don't get messed up with any effects of the past run
link|improve this answer
feedback

Set it to run every minute, then see if it successfully runs one minute later. Once you have it working, set it back to run every week instead.

link|improve this answer
feedback

Maybe this post helps: Serverfault Question 85893

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.