{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.devtools.tools"},{"@type":"ListItem","position":2,"name":"Cron Examples","item":"https://www.devtools.tools/cron"},{"@type":"ListItem","position":3,"name":"Every 2 minutes","item":"https://www.devtools.tools/cron/every-2-minutes"}]}All cron examples
Cron expression: every 2 minutes
Runs every 2 minutes, starting at minute 0 of each hour.
*/2 * * * *Field by field
| Field | Value | Meaning |
|---|---|---|
| Minute | */2 | Every 2 minutes |
| Hour | * | Every hour |
| Day of month | * | Every day of the month |
| Month | * | Every month |
| Day of week | * | Every day of the week |
Typical uses
- Frequent polling without every-minute load
- Near-real-time sync jobs
Related schedules
Need a different schedule? Build and validate any cron expression visually with the free Cron Expression Builder.