Running a cron job every 5 minutes is a commonly used cron schedule. In this quick how-to article, you will learn to schedule a cronjob to run every 5 minutes.

Syntax: Use the following syntax to schedule a command or script to run every 5 minutes using crontab.

1

*/5   *   *   *   *    command

For example, to schedule a PHP script to run every 5 minutes. Run the command crontab -e to edit crontab in an editor and schedule your job

1

*/5 * * * * /usr/bin/php f /var/www/html/cron.php

The cronjob will run the above command at 5-minute intervals.

Running a Cron Every 5 Minutes cron cronjobs crontab General Articles
Running crontab every 5 minutes