Crontab Backups: A Simple, Time-Saving Holiday Gift for DBAs and Sysadmins

Posted in: Technical Track

It’s holiday season in many parts of the world, but it’s not all parties and eggnog. Caretakers of critical IT systems often have significant work to do as those systems roll over into a new year. In some cases, we’re just monitoring to make sure nothing unusual happens. In other cases, however, we’re making the unusual happen: running those batch jobs and backups that only fire once per year.

So what happens when you update the crontab on a critical system to accommodate year-end processing? What happens when, despite all your diligence and devotion to human reliability guidelines, you perform a simple slip, and instead of typing crontab -e, you type crontab -r? Well, the documentation tells you what happens:

     -r      Remove the current crontab.

     -e      Edit the current crontab

(Incidentally, if there isn’t a rule of software design that requires you to LOOK DOWN AT YOUR KEYBOARD WHEN CHOOSING FLAGS FOR YOUR UTILITIES, there damn well should be. Seriously, who thought that combinations of options was a good idea???)

What happens next is up to you. You can:

  1. Pray that you typed crontab -l first, and can recover the listing from your terminal logs.
  2. Search feverishly through email, old trouble tickets, and other internal documentation to reconstruct the contents of the crontab.
  3. Reach out to your sysadmin (assuming that’s not you, and that the sysadmin isn’t already on holiday) for help in restoring the contents from backup. Won’t that be a fun conversation?
  4. Restore from a backup that you’ve been making yourself, all along.

I’m sure that most people would pick option #4, and it’s very easy to implement. You can give yourself the gift of “crontab insurance” by adding a simple line to the beginning of each of your crontabs:

01 00 * * * /usr/bin/crontab -l > ~/.crons/cronbak.`date +\%u` 2>&1

You’ll also need to create the .crons directory first and double-check the path to the crontab executable on your system. But the result should be a one-week rotation of crontab backups, named cronbak.[1-7]. If you can’t be certain that you’ll notice something’s wrong with your crontab in 1 week, you can easily get additional “insurance” by changing %u to %d (day of month) or even %j (day of year).

While this may seem like an inconsequential thing, it’s not. This little backup technique has saved me and other members of my team significant amounts of work and precious client time. I have personally had to execute three of the four solutions listed above (thankfully, not #3…yet :) ), and having this backup on hand is by far the most preferable, stress-free option. No matter how good we are at what we do, it’s important to remember that even maximum human reliability is not infallibility. Take the time to do this simple thing. Someday you’ll be glad you did!

email
Want to talk with an expert? Schedule a call with our team to get the conversation started.

About the Author

Pythianite, Apps DBA, ORACLENERD, dad, husband, cyclist, Mac geek, beer snob. Tweeting at https://twitter.com/jpiwowar

1 Comment. Leave new

Only Four Left… » crontab backups: a simple, time-saving holiday gift idea for DBAs and sysadmins
December 24, 2012 3:02 am

[…] a simple, time-saving holiday gift idea for DBAs and sysadmins [I originally posted this over at the Pythian blog. If you're not following it, you should! Way more content, by far smarter people than lil ol' […]

Reply

Leave a Reply

Your email address will not be published. Required fields are marked *