I want to set a cron job time: on the 2nd and 17th of each month and every 3 hours these days. And first time cron job running is 01 am. after periods: 04 am, 07 am, 10 am, 1 pm, 4 pm, 7pm, 10pm. Just 2 days.
For instance: 2 May and 17 May. 2 June and 17 June.... And 01 am, 04 am, 07 am, 10 am, 1 pm, 4 pm, 7pm, 10pm periods.
I tired this : 00 00 2-17 * * ? But not work as I wanted.
EDIT: is solved: 0 0 1,4,7,10,13,16,19,22 2,17 * *. top 2 digits: 0 0 => seconds and minutes. Since I need seconds, I added the leading zero.