如何更改 Lucid Work Enterprises 中的时区设置
我已经安装了 Lucid Work Enterprises,并注意到它显示的是 UTC 时区的时间。但我的系统时区是UTC+05:30
。因此,我的数据库的last_modified字段值对于索引的增量查询总是存在差异(因为Lucid管理时区和我的数据库时区有5:30小时的差异)。
我尝试更改 start.bat 文件中的设置 “设置 MISC_OPTS2=-Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8”
到 "set MISC_OPTS2=-Duser.language=en -Duser.country=US -Duser.timezone=UTC+05:30 -Dfile.encoding=UTF-8"
但这没有任何区别。
我无法找到更改 Lucid 管理区域中时区设置的方法。即使安装向导中也没有选择时区的选项。
请帮助我如何更改 Lucid 的时区设置。
提前致谢
I have installed Lucid Work Enterprises and notice that its displaying time of UTC zone. But my system timezone is UTC+05:30
. so there is always a difference in my database last_modified field value for delta query for indexing (as there is 5:30 Hrs difference in Lucid admin timezone and my database timezone).
I tried to change a setting in start.bat file from"set MISC_OPTS2=-Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8"
to"set MISC_OPTS2=-Duser.language=en -Duser.country=US -Duser.timezone=UTC+05:30 -Dfile.encoding=UTF-8"
But it doesn't make any difference.
I am unable to find a way to change timezone setting in Lucid admin area. Even there was no option to select timezone in installation wizard.
Please help me that how i can change this timezone setting for Lucid.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在使用 lucen/solr (没有 LWE)时遇到了类似的问题。在 solr 中,也无法配置时区。向“Lucid Imagine”的合作伙伴询问如何使用 lucene/solr 处理时区,我得到了答案:更改 J2EE servlet 容器选项中的时区设置。
但正如你所说:
我的解决方法是由应用程序实现的,它处理 lucene 时间戳和数据库时间戳之间的“时区差异”。不确定您使用的是哪种编程语言。例如,PHP 提供了很好的内置功能来处理 dateTime 对象和不同的时区。
I had a similar issue using lucen/solr (without LWE). At solr ther is (also) no way to configure the timezone. Asking an Partner from "Lucid imagination" how to handle time-zones with lucene/solr, i get the answer: change timezone-settings at your J2EE servlet container options.
But as you said:
My workaround is realized by the application, which handles the "time-zone-difference" between lucene- and database timestamp. Not sure, which programming language you are using. PHP for example provides nice build-in functionality for handling dateTime objects and different timezones.