Cron

Cron for Every 2 Hours

Runs on the hour, every other hour — midnight, 2am, 4am, and so on.

0 */2 * * *

Field by field

A cron expression has 5 fields, in order: minute, hour, day-of-month, month, day-of-week. 0 */2 * * * breaks down as: minute = 0; hour = */2; day-of-month = *; month = *; day-of-week = *

Want to build a different schedule, or check how a related expression behaves? Open this exact expression in the full Cron Expression Builder to edit it directly.

Related

Related