I issue the following command on the server:
> date
Mon Mar 9 08:16:02 EDT 2015
Then I log into mysql and type the following:
SELECT @@SYSTEM_TIME_ZONE, @@TIME_ZONE, NOW();
Result:
+--------------------+-------------+---------------------+
| @@SYSTEM_TIME_ZONE | @@TIME_ZONE | NOW() |
+--------------------+-------------+---------------------+
| EST | SYSTEM | 2015-03-09 02:10:00 |
+--------------------+-------------+---------------------+
How can I set the time to be correct?
EDIT: It is not just the hours that is off it is also minutes too.