0

I having a problem with screen on Centos 7. The system time is correct but on screen application theres a diference of 3 hours.

The system output(correct):

[root@Server ~]# date
Ter Fev 23 01:27:11 BRT 2016

And the screen outputs running a java application:

[04:27:09 INFO]: ...

This is a screen or java issue?

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940

1 Answers1

0

The application is disregarding the system time zone and displaying the time in UTC.

In your timezone, the summer time had just ended, so your time zone was UTC-0300. This corresponds to the time displayed by your application.

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940