On 5/22/2018 9:26 AM, LOPEZ-CORTES Mariano-ext wrote: > It's possible to configure Solr with a timezone other than GMT?
No, at least not in the way that you're thinking. > It's possible to configure Solr Admin to view dates with a timezone other > than GMT? As far as I know, this is not possible. The information in search results is not interpreted at all, it is shown exactly as it is received from the server. The server is going to send UTC, and it is going to expect UTC at index time if the input is a string. It is up to client software to translate to the users timezone. It is possible to tell Solr what timezone it should use to determine day boundaries for date math -- NOW/DAY, NOW/WEEK, etc. But the actual data will still be in UTC. Thanks, Shawn