Jenkins - Build job monthly or weekly - syntax

What is the cron syntax for scheduling a Jenkins job:
a) monthly
b) weekly
Thanks!

Jenkins provides a helpful overview here. If you tick on Build periodically in the job configuration, you can click on the question mark next to Schedule.
I just want to quote one small part of it (it's always helpful to read the entire help yourself):
This field follows the syntax of cron (with minor differences).
Specifically, each line consists of 5 fields separated by TAB or
whitespace:
MINUTE HOUR DOM MONTH DOW
MINUTE Minutes within the hour (0–59)
HOUR The hour of the day (0–23)
DOM The day of the month (1–31)
MONTH The month (1–12)
DOW The day of the week (0–7) where 0 and 7 are Sunday.
[...]
In addition, #yearly, #annually, #monthly, #weekly, #daily, #midnight,
and #hourly are supported as convenient aliases. These use the hash
system for automatic balancing. For example, #hourly is the same as
H * * * * and could mean at any time during the hour. #midnight
actually means some time between 12:00 AM and 2:59 AM.

Jenkins also supports predefined aliases to schedule build:
#hourly, #daily, #weekly, #monthly, #midnight
#hourly --> Build every hour at the beginning of the hour --> 0 * * * *
#daily, #midnight --> Build every day at midnight --> 0 0 * * *
#weekly --> Build every week at midnight on Sunday morning --> 0 0 * * 0
#monthly --> Build every month at midnight of the first day of the month --> 0 0 1 * *

For weekly I successfully use: H 0 * * 0

Related

How can i set Scheduler of Ibm on the first Monday of the week?

How can i set Scheduler of Ibm on the first Monday of the week? If i set DayOfMonth 1-7 and DayOfTheWeek 2 together receive an error. Is not good simbol as 2#1
The error is consistent with the documentation
https://www.ibm.com/docs/en/was-zos/8.5.5?topic=SS7K4U_8.5.5/com.ibm.websphere.javadoc.doc/web/apidocs/com/ibm/websphere/scheduler/UserCalendar.html
which states, "The day of week and day of month terms cannot be specified at the same time. One must be a '?' and the other a term."
Regarding your question, you asked about the "first Monday of the week". Did you mean first Monday of the month?
Here is an example of Monday of every week at 8am:
0 0 8 ? * MON
where the Scheduler cron terms are
second minute hourOfDay DayOfMonth Month DayOfWeek
If you want only the first Monday of the month, the Scheduler CRON doesn't have a way to do it.
An easy, but inefficient, solution would be to use the syntax for every Monday and have your task logic return immediately and skip itself if not a first Monday.
You also have the option of supplying your own UserCalendar implementation to implement customized scheduling:
https://www.ibm.com/docs/api/v1/content/SS7K4U_8.5.5/com.ibm.websphere.javadoc.doc/web/apidocs/com/ibm/websphere/scheduler/TaskInfo.html#setUserCalendar(java.lang.String,%20java.lang.String)

DBMS_SCHEDULING Repeat Interval - Half Hourly, 9-5, Mon-Fri

I'm trying to work out if I can put together a repeat interval to apply to a Schedule that runs every half an hour between 9-5 on Monday to Friday.
I have this so far but am struggling to limit the time to within 9-5
FREQ=DAILY; BYDAY=MON,TUE,WED,THU,FRI; BYHOUR=9,10,11,12,13,14,15,16,17;BYMINUTE= 30;
If I run this, it will execute correctly during the 9-5 period; however, it will also execute every 30 minutes past every hour before 9 and after 5. I need to to only begin running >= 09:00 and <=17:00
I'd say that you're close - replace
BYMINUTE= 30
with
BYMINUTE= 0,30

can a scheduled Cron job in Linux server run on every 1st day of the month and also on a specific day of the week

Below cron entries show how to execute tasks on 1st day of the month and also on every Tuesday.
00 02 1 * * - This will execute on every first day of the month.
00 02 * * 2 - This will restart the script every week (Tuesday).
Can a single cron entry replace these two above separate schedules? or do we need two separate schedules always to achieve the same?
If I have a use case to restart the script on 1st of every month and also on every Tuesday, it would be helpful if I can replace those two entries with one
.
Your answer is yes... man 5 crontab explains:
Commands are executed by cron(8) when the 'minute', 'hour', and
'month of the year' fields match the current time, and at least
one of the two 'day' fields ('day of month', or 'day of week')
match the current time.
Where the order is:
field allowed values
----- --------------
minute 0-59
hour 0-23
day of month 1-31
month 1-12 (or names, see below)
day of week 0-7 (0 or 7 is Sunday, or use names)
Your minute, hour and month fields are always the same 0 2 _ * _. You want to execute your script on either the 1st-day of the month _ _ 1 _ _ or Tuesday (day 2) _ _ _ _ 2. Neither are mutually exclusive.
Since the crontab will run when either 'day of month', or 'day of week' match the current time, you may combine them for the result you want, e.g.
0 2 1 * 2 your_command
Which will run at 2am on either the 1st-day of the month or every Tuesday.

Running a Cron job daily 8 PM EST for Magento

Could you please help me to run my cron job daily 8 PM EST for Magento in following format
<schedule><cron_expr>* * * * *</cron_expr></schedule>
If this a simple cron expression you can refer to the cron documentation directly. One thing though I think you will be restricted to the local machine time zone of the machine where this task is running.
The explanation of the five stars is here:-
Field Allowed values
----- --------------
minute 0-59
hour 0-23
day of month 1-31
month 1-12 (or names, see below)
day of week 0-7 (0 or 7 is Sunday, or use names)
So daily 8 p.m. would be 0 20 * * *
Reference: http://man7.org/linux/man-pages/man5/crontab.5.html
I think you need to add EST part after schedule and before cron expression to get desired result.
0 20 * * * TZ="America/New_York" </cron_expr></schedule>

Quartz cron expression - last thursday of every month

I am using Quartz Scheduling and Spring Batch and I need to run a particular job on the last Thursday of every month.
Is it possible to create such a Quartz cron expression?
Thanks,
Yes, Quartz has a special character -- L ("last") --, which allows you to define expressions such as the last friday of the month.
To fire a job at, say, 10am, on the last Thursday (5L) of every month, you can use the following cron expression:
0 0 10 ? * 5L

Resources