Hi everyone, I’m having an issue with the Cron node in n8n. I set up a schedule for my workflow, but it’s not triggering at the expected time.
My workflow is simple
In the Cron node, I configured it like this:{
“mode”: “custom”,
“cronExpression”: “0 9 * * *”
}
I expect it to run every day at 9:00 AM, but it either:
• Doesn’t run at all
• Or runs at a different time
I’m not sure if this is related to timezone settings or if I’m misunderstanding how the cron expression works.
Do I need to configure timezone somewhere in n8n? Or is there something wrong with my cron expression?
Describe the problem/error/question
What is the error message (if any)?
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
Thanks @Niffzy that makes sense now. I didn’t realize the Cron node uses the server timezone that explains the timing issue. I’ll try setting the TZ variable, and the manual offset tip is really helpful too. Appreciate it.