Cron Every 3 Hours

Set up a cron job every 3 hours with 0 */3 * * *. Includes complete field-by-field explanation, practical scenarios, and platform compatibility.

Cron Expression

0 */3 * * *

Field Breakdown

FieldValueMeaning
Minute0At 0
Hour*/3Every 3rd hour
Day of Month*Every day of the month (1–31)
Month*Every month (1–12)
Day of Week*Every day of the week (Sun–Sat)

Detailed Explanation

The cron expression 0 */3 * * * schedules a task to run once every three hours, at the top of every third hour.

Field-by-field breakdown:

  • 0 (Minute): At minute 0 only. The task fires at the start of the hour.
  • */3 (Hour): Every 3rd hour, starting from hour 0. The step value /3 triggers execution at hours 0, 3, 6, 9, 12, 15, 18, and 21.
  • * (Day of Month): Every day from 1 through 31. No restriction on the day of the month.
  • * (Month): Every month from January through December. No restriction on the month.
  • * (Day of Week): Every day of the week from Sunday through Saturday. No restriction on the day.

This means your task will execute 8 times per day, once every three hours. This schedule provides a moderate cadence that is well suited for tasks requiring periodic attention without the overhead of hourly execution. The three-hour gap gives long-running processes ample time to finish. It is often used for incremental database backups, social media content scheduling, and periodic cache warming. This expression is supported by standard cron on Linux/macOS, as well as cloud services like AWS CloudWatch, Google Cloud Scheduler, and GitHub Actions.

Use Case

Great for running incremental database backups that capture recent changes without the storage overhead of hourly full backups.

Try It — Interactive Builder

Every 3 hours

**/5*/10*/15*/300
**/2*/3*/6*/120
*1151,15*/2
*11,4,7,101,7
*1-50,615

Next 10 Executions

1.Thu, Mar 12, 2026, 06:00 PM
2.Thu, Mar 12, 2026, 09:00 PM
3.Fri, Mar 13, 2026, 12:00 AM
4.Fri, Mar 13, 2026, 03:00 AM
5.Fri, Mar 13, 2026, 06:00 AM
6.Fri, Mar 13, 2026, 09:00 AM
7.Fri, Mar 13, 2026, 12:00 PM
8.Fri, Mar 13, 2026, 03:00 PM
9.Fri, Mar 13, 2026, 06:00 PM
10.Fri, Mar 13, 2026, 09:00 PM

Ctrl+Shift+C to copy expression

Customize this expression