1

I have an apache 2 web server working with a tomcat 6 servlet container running on ununtu 9.1, integrated via mod_proxy.

I have the following time mismatch problem:

  • When apache log to its access-log file, the date/time is correct.
  • When a grails app running on tomcat inserts date-related information in the DB, the time is three hours ahead

Any tips on how to fix tomcat's datetime problem ?

Thanks

xain
  • 677
  • 3
  • 13
  • 24

2 Answers2

1

Is this a Timezone problem? Perhaps setting up the TZ variable (and exporting it) in the tomcat startup script might help.

mdpc
  • 11,856
  • 28
  • 53
  • 67
0

GO to Catalina.sh File and Set the Time Zone. It may mismatch with the System. LIke -Duser.timezone=GMT+5 add this into JAVA_OPT Variable.

Shazi
  • 1