Enter your email address to subscribe to this blog and receive notifications of new posts by email.
Email Address
Questions
367
Members
7950
Why MySQL time and Server time is different on my one of the server.
Satya Prakash`
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;
By clicking "Sign up" you indicate that you have read and agree to the privacy policy and terms of service.
Satya Prakash`
mysqld tries to determine your timezone at startup. You can see these values with:
You can set the timezone per-session or globally at runtime:
Related