Interval Schedules

Cron Job Every 5 Minutes – Expression & Examples

The */5 step value runs the job at minutes 0, 5, 10, 15, ..., 55. This is the most commonly used cron interval for monitoring and automation.

Cron Expression
*/5 * * * *
*/5
Minute
(0-59)
*
Hour
(0-23)
*
Day of Month
(1-31)
*
Month
(1-12)
*
Day of Week
(0-6)

How It Works

The */5 step value runs the job at minutes 0, 5, 10, 15, ..., 55. This is the most commonly used cron interval for monitoring and automation.

Common Use Cases

  • Website uptime monitoring
  • Database health checks
  • Email queue processing
  • Price comparison updates

Schedule This Cron Job Now

Create a free CronJobPro account and use */5 * * * * to schedule HTTP requests automatically — with monitoring, retries, and notifications built in.

Frequently Asked Questions

What does */5 * * * * mean in cron?

The */5 step value runs the job at minutes 0, 5, 10, 15, ..., 55. This is the most commonly used cron interval for monitoring and automation.

How do I use this cron expression?

On Linux/macOS, edit your crontab with crontab -e and add:
*/5 * * * * /path/to/your/script.sh
Or use CronJobPro to schedule HTTP requests with this expression — no server required.

What timezone does cron use?

By default, cron uses the system timezone. CronJobPro lets you set a specific timezone per job, so your schedules are predictable regardless of server location.