• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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