How to schedule jobs in Jenkins at a given time| Every 5 minutes | Any day at a given Hour

Published: 18 December 2023
on channel: SDET Adda For QA Automation
754
20

Cron job every day at 6 AM?
0 6 * * * command to be executed
^ you need to set the minute, too. Else it would be running every minute on the 18th hour
How to setup a cronjob in general:

* * * * * command to execute
│ │ │ │ │
│ │ │ │ │
│ │ │ │ └───── day of week (0 - 6) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0)
│ │ │ └────────── month (1 - 12)
│ │ └─────────────── day of month (1 - 31)
│ └──────────────────── hour (0 - 23)
└───────────────────────── min (0 - 59)
What does Asterisk (*) mean

The asterisk indicates that the cron expression matches for all values of the field. E.g., using an asterisk in the 4th field (month) indicates every month.

Side notes
Other special characters in cronjobs

Slash ( / )

Slashes describe increments of ranges. For example 3-59/15 in the 1st field (minutes) indicate the third minute of the hour and every 15 minutes thereafter. The form "*/..." is equivalent to the form "first-last/...", that is, an increment over the largest possible range of the field.

Comma ( , )

Commas are used to separate items of a list. For example, using "MON,WED,FRI" in the 5th field (day of week) means Mondays, Wednesdays and Fridays.

Hyphen ( - )

Hyphens define ranges. For example, 2000-2010 indicates every year between 2000 and 2010 AD, inclusive.

Percent ( % )

Percent-signs (%) in the command, unless escaped with backslash (), are changed into newline characters, and all data after the first % are sent to the command as standard input.

#cucumber #jenkins #cron, #schedulejobinjenkins, #devops #automationframework #selenium #javainterviewquestionsandanswers
#How to Schedule a Jenkins Job #How to trigger a job automatically in Jenkins #buildjobautomatically #sdet #automation #qaautomation #seleniumwebdriver


Watch video How to schedule jobs in Jenkins at a given time| Every 5 minutes | Any day at a given Hour online without registration, duration hours minute second in high quality. This video was added by user SDET Adda For QA Automation 18 December 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 754 once and liked it 20 people.