Fixing Akonadi's warning of the non-existing leap second table
Posted by hkwint on Nov 19, 2010 2:41 PM LXer Linux News; By H.Kwint - The Netherlands | |
LXer Feature: 19-Nov-2010
Ever since I installed Kontact 4.5, it has been showing an MySQL warning when starting. The exact error in the logs is: Can't open and lock time zone table: Table 'mysql.time_zone_leap_second' doesn't exist trying to live without them
While it's only a warning, I don't like to have my logs filled with warnings. Hence, I went on a hunt to prevent this warning. Lots of posts said this issue is fixed in newer versions (certainly not for me!), or it doesn't matter. But that wasn't good enough for me so I felt relieved when I found a workaround yesterday, which I shall explain below.
|
|
Now, please mind I'm only a noob when it comes to databases and MySQL. So as a result I may be using the wrong terms, but I'll try anyway:
Besides my desktop, I recently hired a Virtual Private Server. It runs Debian Lenny, and I installed MySQL on it as well. Normally when connecting, this is done using the socket "/var/run/mysqld/mysqld.sock", the 'default instance' of MySQL.
Akonadi however uses its own 'local instance' of MySQL, which also uses another socket. Now, let's find out the difference between the two. We start with the Debian server.
- First, we connect to MySQL as root:
$ mysql -u root -p
- Then, we list all databases:
mysql > show databases;
- It shows a database called 'mysql' exists. This one stores settings of MySQL itself. Let's use it:
mysql > use mysql;
- So, let's see which tables are in this database:
mysql > show tables;
- Now, we see a time_zone_leap_second table is present!
Now, let's try the same with the local Akonadi MySQL instance: Step 1 becomes
- mysql -S ${HOME}/.local/share/akonadi/db_misc/mysql.socket
However, when performing step 2, we notice there's no database called 'mysql' here, so there can't be a leap second table in it as well! Luckily, fixing the issue is easy. In a shell, just enter
- $ mysql_install_db --datadir=${HOME}/.local/share/akonadi/db_data/
and you should be fine! You can use the commands shown above to check the table is really existing in Akonadi's local MySQL database now. |
Return to the LXer Features
This topic does not have any threads posted yet!
You cannot post until you login.
Scott Ruecker (San Diego, U.S.): Linux That's Small Oct 14, 2024penguinist: Encryption, Trust, and the Hidden Dangers of Vendor-Controlled Data Aug 27, 2024 Scott Ruecker (San Diego, U.S.): My Linux Mint Tribute Aug 23, 2024 Scott Ruecker (San Diego, U.S.): How I Turned My Chromebook Into A "Mintbook" Jul 08, 2024 Scott Ruecker (San Diego, U.S.): Adventures With My New Chromebook Jun 10, 2024 Scott Ruecker: My Linux Laptop May 08, 2022 Scott Ruecker: Laptop Dual Boot Project: Part 2 Nov 30, 2021 Scott Ruecker: Laptop Dual Boot Project Nov 30, 2020 Scott Ruecker: Lenovo Laptop Love..Not! Nov 01, 2019 James Dixon: Attempting to install Linux on a new laptop, a follow-up Sep 21, 2019
View all
|
|
|
Login