Cron / Crontab Tips Collection

I will use this article to collect interesting tips and tricks about using the Linux cron. This is not so much about setting up a cron, but about little things I use or discovered!

What is a cron ?

The cron daemon is a long-running process that executes commands at specific dates and times. You can use this to schedule activities, either as one-time events or as recurring tasks.

What is the crontab?

For commands that need to be executed repeatedly (e.g., hourly, daily, or weekly), you can use the crontab command. The crontab command creates a crontab file containing commands and instructions for the cron daemon to execute.

Format is: MIN HOUR DOM MON DOW CMD
Minute field
Hour field
Day of month
Day of week
Command

  1. crontab -l              # Viewing the cronjobs as currently logged in user
  2. crontab -e              # Edit the cronjob for currently logged in user
  3. crontab -l -u $USER     # View the cronjob for the specified user
  4. crontab -e -u $USER     $ Edit the cronjob for the specified user

Run every 5 minutes

  1. */5 * * * *  /home/reggaenights/script.sh

Run yearly, monthly, weekly, daily or on reboot.
@yearly will run at 00:00 on Jan 1st for every year.
@monthly will run at 00:00 on 1st of every month.
@weekly will run at 00:00 on starting of every week.
@daily will run at 00:00 on every day.
@reboot  will run after the server has been rebooted

  1. @yearly         /home/reggaenights/script.sh   
  2. @monthly        /home/reggaenights/script.sh
  3. @weekly         /home/reggaenights/script.sh
  4. @daily          /home/reggaenights/script.sh

TIPS

1. Send cron output via email

  1. */30 * * * * /bin/bash /cleanup | /usr/bin/mail -s "Notify me" your@email.org

2. Use a real cron for WordPress

A real cron does not rely on website activity and executes independently.

  1. */30 * * * * /usr/bin/wget -q -O - https://yourwordpress.org/wp-cron.php?doing_wp_cron

Do not forget to disable the virtual WordPress Cron in the wp-config.php!

  1. define('DISABLE_WP_CRON', true);

3. Prevent Emails being sent, when cron executes > /dev/null 2>&1

  1. */30 * * * * /usr/bin/wget -q -O - https://yourcrone.org/wp-cron.php?doing_wp_cron >/dev/null 2>&1

4. Set Standard Variables

  1. # Email to send output to
  2. MAILTO="a@b.com,b@b.com"
  3.  
  4. # Setup your path for reuse
  5. PATH="/usr/bin:/sbin:/bin"
  6.  
  7. # Tells which directory the cron should execute the crontab commands from
  8. HOME="/path/to/app/root"
  9.  
  10. #Set the default shell
  11. SHELL="/bin/bash"

5. Output Redirection

  1. */15 * * * * /home/reggaenights/script.sh >> /home/collect/cron/output/pipe.log 2>&1

TOOLS

  1. Crontab UI (NodeJS) – Easy way to edit your crontab visually. @Github
  2. Chronis ( >= PHP 7) – Chronis will help you define cron jobs using natural language / YAML and will generate the crontab files for you. @Github
  3. PHP Cron Expression Parser – Standard (V7) compliant crontab expression parser/validator with support for time zones. @Github
  4. PhpGt/Cron (PHP) – Define background jobs in standard crontab format and the Cron Runner will execute them when they are due. Jobs can be either normal scripts, or calls to static functions with automatic autoloading taken care of. @Github
  5. Cronicle (NodeJS) – A simple, distributed task scheduler and runner with a web based UI. @GitHub / Website
Alex

I am a full-stack developer. I love programming,  design and know my way around server architecture as well.  I would never feel complete, with one of these missing. I have a broad range of interests, that’s why I constantly dive into new technologies and expand my knowledge where ever required. Technologies are evolving fast and I enjoy using the latest. Apart from that, I am a peace loving guy who tries to have people around him that think the same.  I truly believe in the principle: “If you help someone, someone will help you, when you need it."

Recent Posts

Particle Network Animations in Javascript

What are particle animations? Particle network animations in JavaScript typically involve creating visual representations of… Read More

3 days ago

B&B / Hotel Booking Solutions for WordPress | 2024

BOOKING SOLUTIONS 202x This is my take on a subset of booking, appointment, PMS or… Read More

1 month ago

WordPress Cron + WP-CLI + Ntfy

THE GOAL Create a system cron for WordPress, that is accessible and can be easily… Read More

2 months ago

2024 is here and now :)

2024, what's cooking? Slowly getting into the 2024 spirit. 3 projects coming to a close… Read More

4 months ago

2023 ends and whats next !

Short look back at 2023 This has been a busy and interesting year. I am… Read More

4 months ago

cubicFUSION Grid Tweaker – Elementor Grid made easy.

Elementor Pro provides grid containers as an experimental feature. The options provided are limited, when… Read More

5 months ago