Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Can we define timezone for AEM scheduler?

Avatar

Level 2

Hi,

 

We have one requirement that we want to run aem scheduler in EST timezone but our AEM server is running in UTC timezone. So is there a way to schedule scheduler in EST timezone?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

we can not able to give client side time zone for scheduler. In cron expression, there is no option.

You can convert your EST time to Server Time (UTC) and get the cron expression.

UTC time is 5 hours ahead of Easter time, you can easily convert / calculate the time to schedule the job in set.

View solution in original post

3 Replies

Avatar

Correct answer by
Community Advisor

we can not able to give client side time zone for scheduler. In cron expression, there is no option.

You can convert your EST time to Server Time (UTC) and get the cron expression.

UTC time is 5 hours ahead of Easter time, you can easily convert / calculate the time to schedule the job in set.

Avatar

Employee

Hi @ektaa69139387,

You can set -Duser.timezone and force the server to use the required timezone in startup file: 

Use :-    -Duser.timezone=US/Central or -Duser.timezone=America/Los_Angeles etc.

I hope this would help you.

 

Thanks!!

Avatar

Community Advisor
@ektaa69139387 to test, you can simply use this block of code, System.out.println(TimeZone.getDefault());