Why MySQL time and Server time is different

Why MySQL time and Server time is different on my one of the server.

 

mysqld tries to determine your timezone at startup. You can see these values with:

SELECT @@global.time_zone, @@session.time_zone;

You can set the timezone per-session or globally at runtime:

SET GLOBAL time_zone = timezone;
on August 1, 2018.
Add Comment
0 Answer(s)

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.