I am administrating a MySQL Server. It is installed on a ubuntu server. Recently I discovered, that the ubuntu server was set on a false timezone. I corrected that through terminal by the command dpkg-reconfigure tzdate
. Now I want the MySQL Server to adapt this setting. Is this possible?
Asked
Active
Viewed 2.2k times
4
3 Answers
4
In your /etc/mysql/mysql.conf
or wherever it is, check out the default-time-zone

Henry
- 6,502
- 2
- 24
- 30
-
2I got this from the link you posted: `SET time_zone = SYSTEM;` After this command I restarted the MySQL Server and everything was fine! Thanks! – Aufwind May 16 '11 at 15:31
1
You need to update mysql tables on server for supporting the timezones names. Use shell command on server:
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql -p

23W
- 1,413
- 18
- 37
-
what the equivalent path for windows? /usr/share/zoneinfo I am using windows 10 wamp on this machine – themhz Oct 22 '16 at 10:20
0
In order to change timestamp on mysql , you can use the below steps.
Connect to mysql server. mysql -u root -p TYPE PASSWORD
SET GLOBAL time_zone = '+5:30';
Restart Mysql server by issuing the below query
service mysqld stop service mysqld start

Rizwan Basheer
- 137
- 1
- 5