-1

I'm trying to schedule a quartz job for a specific time on a day. This is the cron expression:

0 20 18 ?  * * *

It should fire on 18:20 every day, instead the next fire time show:

2021-08-29T08:20:00.000+00:00
Joakim Danielson
  • 43,251
  • 5
  • 22
  • 52
user2304483
  • 1,462
  • 6
  • 28
  • 50
  • I’m voting to close this question because Questions about operating systems, their utilities, networking and hardware, are off topic here. [What topics can I ask about here?](https://stackoverflow.com/help/on-topic). Please delete this and ask, instead, on https://unix.stackexchange.com/ – Rob Aug 30 '21 at 08:17

1 Answers1

0

Try this cron expression:

20 18 * * *

Also suggest this cron calculator site.

Dudi Boy
  • 4,551
  • 1
  • 15
  • 30