• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Resolved Setting CRON for every other day

Twincarb

New Pleskian
Hi,
I have just ventured into the black art of setting a CRON job on my server... I have quite a few that work without any issue the one that's got me stumped is the requirement for a script to be every other day.

The server is using Centos 7

The format that I thought should work is 1 7 * * *1/2 which should trigger at 0701 every other day.

Can anyone suggest a better format? When do I want to start this job in relation to the first day I want it to fire.

Thanks in advance for some black magic wisdom!

Dave
 
Hi Twincarb,

Your "thought" can't work, because there are 5 possible option - fields for a crontab:
Code:
*     *     *     *     * 
-     -     -     -     -
|     |     |     |     |
|     |     |     |     +----- day of week ( 0 - 6 ) ( Sunday = 0 )
|     |     |     +------- month ( 1 - 12 )
|     |     +--------- day of month ( 1 - 31 )
|     +----------- hour ( 0 - 23 )
+------------- min ( 0 - 59 )
Your actual setting for "day of week" ( => *1/2 ) is a misconfiguration, because the possible options are here: 0 / 1 / 2 / 3 / 4 / 5 or 6 - nothing more. ;) So if you desire the cron to be executed on Mondays and Tuesdays, you would certainly use "Mon,Tue" or "1,2".

which should trigger at 0701 every other day
? Sorry, it is unclear, what you desire. Pls. try to be more precise in your next thread to avoid guessings. ;)



In addition, your question is absolutely not Plesk - related and therefore at the wrong forum. Pls. consider to open such a question at:

 
Back
Top