Linux – Why isn’t crontab running every minute

centoscronlinux

I have a cron that needs to run every minute

I tried

1 * * * * php /scripts/cron.php

but seems not to run every minute, why? Since in the minute tab I entered 1 for every minute

but the following runs every minute

* * * * * php /scripts/cron.php

Best Answer

1 in the first column doesn't mean "every minute", it means "one minute past the hour".