Difference between revisions of "MySQL Time Zone Tables"

From MythTV Official Wiki
Jump to: navigation, search
(People loading packages *shouldn't* need to worry. Removed list of distributions.)
(Better solution for missing definitions based on Mike Dean's comment and ubuntu's method.)
(8 intermediate revisions by 2 users not shown)
Line 8: Line 8:
 
for example Mythbuntu, should expect the tables to be loaded automatically.
 
for example Mythbuntu, should expect the tables to be loaded automatically.
  
To see if the tables are already loaded, enter mysql and type:
+
To see if the tables are already loaded (using the same query
 +
that ''mythbackend''/''mythtv-setup'' uses to check them) start
 +
''mysql''.
 +
<pre>
 +
For 0.27+, type:
 +
SELECT CONVERT_TZ(NOW(), 'SYSTEM', 'Etc/UTC');
  
<pre>
+
For 0.26, type:
SELECT CONVERT_TZ('2012-06-07 12:00:00', 'GMT', 'America/New_York');
+
SELECT CONVERT_TZ(NOW(), 'SYSTEM', 'UTC');
 
</pre>
 
</pre>
  
If the response looks like:
+
If the response looks similar to this 0.27+ response:
  
 
<pre>
 
<pre>
+--------------------------------------------------------------+
+
+----------------------------------------+
| CONVERT_TZ('2012-06-07 12:00:00', 'GMT', 'America/New_York') |
+
| CONVERT_TZ(NOW(), 'SYSTEM', 'Etc/UTC') |
+--------------------------------------------------------------+
+
+----------------------------------------+
| 2012-06-07 08:00:00                                          |
+
| 2013-11-14 14:07:58                    |
+--------------------------------------------------------------+
+
+----------------------------------------+  
 
</pre>
 
</pre>
 
the tables are loaded and no further action is required.
 
the tables are loaded and no further action is required.
Line 29: Line 34:
 
If the response looks like:
 
If the response looks like:
 
<pre>
 
<pre>
+--------------------------------------------------------------+
+
+----------------------------------------+
| CONVERT_TZ('2012-06-07 12:00:00', 'GMT', 'America/New_York') |
+
| CONVERT_TZ(NOW(), 'SYSTEM', 'Etc/UTC') |
+--------------------------------------------------------------+
+
+----------------------------------------+
| NULL                                                         |
+
| NULL                                   |
+--------------------------------------------------------------+
+
+----------------------------------------+
 
</pre>
 
</pre>
  
Line 47: Line 52:
  
 
Restart MySQL, and repeat the initial test.
 
Restart MySQL, and repeat the initial test.
 +
 +
== Data too long for column 'Abbreviation' Error ==
 +
 +
Some users are getting the above message. The solution is to save the output of
 +
the 1st command in a file. Edit the file, search and delete all offending
 +
entries. Then <code>cat</code> that file to the 2nd command. Note that the bad entries
 +
could be on one line or be spread over several. Three line example:
 +
 +
<pre>
 +
INSERT INTO time_zone_transition_type (Time_zone_id, Transition_type_id, Offset, Is_DST, Abbreviation) VALUES
 +
(@time_zone_id, 0, 0, 0, 'Local time zone must be set--see zic manual page')
 +
;
 +
</pre>
 +
 +
<pre>
 +
mysql_tzinfo_to_sql /usr/share/zoneinfo > /tmp/tz.fix
 +
edit /tmp/tz.fix
 +
cat /tmp/tz.fix | mysql -u root -p<yourpassword> mysql
 +
</pre>
 +
 +
== Missing UTC (0.26) or Etc/UTC (0.27 and above) Time Zone Definitions ==
 +
 +
It appears that some distributions do not contain information for the timezone that ''mythbackend'' and
 +
''mythtv-setup'' check for before starting. In 0.27 and above the test is for: ''Etc/UTC'', and in 0.26
 +
it's: ''UTC''.
 +
 +
To solve the problem, link an existing definition to the required one.
 +
 +
For 0.27+:
 +
 +
  cd /usr/share/zoneinfo/Etc
 +
  sudo ln -s ../Zulu UTC
 +
 +
For 0.26:
 +
 +
    cd /usr/share/zoneinfo
 +
    sudo ln -s Zulu UTC
 +
 +
Then, re-run the ''mysql_tzinfo_to_sql'' command above.
  
 
References:
 
References:
Line 53: Line 97:
 
*http://dev.mysql.com/doc/refman/5.0/en/time-zone-support.html
 
*http://dev.mysql.com/doc/refman/5.0/en/time-zone-support.html
 
*http://dev.mysql.com/doc/refman/5.0/en/mysql-tzinfo-to-sql.html
 
*http://dev.mysql.com/doc/refman/5.0/en/mysql-tzinfo-to-sql.html
 +
*http://wiki.qnap.com/wiki/How_to_install_MythTV#Missing_timezone_support.C2.A0

Revision as of 06:04, 18 November 2013

Starting with MythTV version 0.26, the time zone tables must be loaded in MySQL. This should be done before attempting the upgrade. mythtv-setup and mythbackend will not start without the tables loaded and an error message will apppear in the respective log explaining that.

This is important for users building from source, users loading MythTV from a package, for example Mythbuntu, should expect the tables to be loaded automatically.

To see if the tables are already loaded (using the same query that mythbackend/mythtv-setup uses to check them) start mysql.

For 0.27+, type:
SELECT CONVERT_TZ(NOW(), 'SYSTEM', 'Etc/UTC');

For 0.26, type:
SELECT CONVERT_TZ(NOW(), 'SYSTEM', 'UTC');

If the response looks similar to this 0.27+ response:

+----------------------------------------+
| CONVERT_TZ(NOW(), 'SYSTEM', 'Etc/UTC') |
+----------------------------------------+
| 2013-11-14 14:07:58                    |
+----------------------------------------+ 

the tables are loaded and no further action is required.

Important.png Note: If the time zone tables are updated, then the procedure below should be repeated.

If the response looks like:

+----------------------------------------+
| CONVERT_TZ(NOW(), 'SYSTEM', 'Etc/UTC') |
+----------------------------------------+
| NULL                                   |
+----------------------------------------+

then the tables must be loaded.

Assuming the distribution's time zone information is in /usr/share/zoneinfo, type:

mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p<yourpassword> mysql

Remove the -p<yourpassword> from the above if you don't have one.

Restart MySQL, and repeat the initial test.

Data too long for column 'Abbreviation' Error

Some users are getting the above message. The solution is to save the output of the 1st command in a file. Edit the file, search and delete all offending entries. Then cat that file to the 2nd command. Note that the bad entries could be on one line or be spread over several. Three line example:

INSERT INTO time_zone_transition_type (Time_zone_id, Transition_type_id, Offset, Is_DST, Abbreviation) VALUES
(@time_zone_id, 0, 0, 0, 'Local time zone must be set--see zic manual page')
;
mysql_tzinfo_to_sql /usr/share/zoneinfo > /tmp/tz.fix
edit /tmp/tz.fix
cat /tmp/tz.fix | mysql -u root -p<yourpassword> mysql

Missing UTC (0.26) or Etc/UTC (0.27 and above) Time Zone Definitions

It appears that some distributions do not contain information for the timezone that mythbackend and mythtv-setup check for before starting. In 0.27 and above the test is for: Etc/UTC, and in 0.26 it's: UTC.

To solve the problem, link an existing definition to the required one.

For 0.27+:

  cd /usr/share/zoneinfo/Etc
  sudo ln -s ../Zulu UTC

For 0.26:

   cd /usr/share/zoneinfo
   sudo ln -s Zulu UTC

Then, re-run the mysql_tzinfo_to_sql command above.

References: