Akonadi

    From KDE UserBase Wiki
    Revision as of 18:15, 26 January 2010 by Dakon (talk | contribs) (mysql config is also in /etc on opensuse)

    Template:I18n/Language Navigation Bar

    Introduction

    This page is mainly concerned with troubleshooting Akonadi, as there are inevitable glitches in early stages of migration. For many people the first signs of Akonadi activity will be in KDE SC 4.4, and many will be confused by it. For a brief description of the purpose of Akonadi, see this Glossary entry. You will also find useful links to further reading. Once the inevitable teething troubles are over Akonadi will provide a power-house usable by many applications.

    Troubleshooting Tips

    • When reporting problems with the Akonadi server, always include the comprehensive self-test report. This report can be obtained from the self-test dialog which shows up whenever the Akonadi server was unable to start successfully. You can find the selftest dialog in the kcmmodule that is accessable via 'kcmshell4 kcm_akonadi'.
    • Starting the Akonadi server manually on the command line can result in additional useful information. This can be done by running akonadictl start on a console. Similar, with akonadictl stop the Akonadi server can be stopped again. akonadictl status gives more useful information.

    Common Problems

    Kontact doesn't start - and doesn't tell me anything

    If Kontact doesn't start, and you see no error messages, check that Akonadi is running. Akonadi should start on demand, but currently (January 2010) it doesn't. You have to start it before Kontact will start up if you have any migrated resources (most likely KAddressBook). Use the AkonadiTray icon to start it.

    Folder not found: "/Local"

    Many people have reported this error, when Kontact would not start. There seems to be a bug in the migration that is telling KMail to look for local mail in /home/anne/.local/share/Local, a directory that had not been set up. The cure for this is not to attempt to correct it, but, with KMail/Kontact closed, to open the Akonadi Console (user krunner, Alt-F2, or 'akonadiconsole' in konsole), and remove the resource that it says is for local mail. You should now find that you can start Kontact or KMail, and that a new resource will be created, pointing to /home/anne/.local/share/local-mail

    There are other new folders under ~/.local/share/

    Yes. If your addressbook has migrated correctly a new resource will have been created as ~/.local/share/contacts/

    What are /usr/bin/akonadi_maildir_resource and /usr/bin/akonadi_maildispatcher_agent?

    The akonadi_maildir_resource is created automatically by the akonadi_maildispatcher_agent, while the latter is always started together with the Akonadi server as it provides basic functionality (e.g. sending mail) that is used by all mail applications that are (and will be) based on Akonadi. So it is ok that these two are running, as a user you can simply ignore them. This autogenerated akonadi_maildir_resource will always point to ~/.local/share/local-mail/ which is your 'Local folders' account where your local folders and emails will be stored.

    At this point, in KDE SC 4.4, mail is not yet being migrated.

    I want to use my current Address Book and Organizer - Can I?

    Yes. When you use the Akonadi Console to add a resource it allows you to choose as Standard Addressbook - point that to your std.vcf should work fine. Migration does not destroy your old addressbook. You can continue to use it, though you will lose any benefits that Akonadi can bring. Alternatively you can have both an Akonadi addressbook and your original one, for a time, if you feel safer that way.

    I can't see any details in my Address Book

    At the moment, the cause of this is not identified, but the cure is simple. Close Kontact, and start KAddressBook as a stand-alone application. After you close it you will be able to use it within Kontact. It seems that something is not being triggered when Kontact launches, and I expect this to be identified and fixed soon.

    Some Technical Issues

    Nepomuk

    Starting with KDE 4.4, it is required that Nepomuk is running in order for Akonadi to work correctly. Akonadi will check this and display an error dialog on startup if this is not the case.

    Currently, Sesame2 backend for Nepomuk is known to work, but if your distro carries the Virtuoso backend, you should use that. The Redland backend is pathetically slow and can not be used. Sesame2 is Java-based. You can check whether the Nepomuk is running with the correct backend by using the Akonadi self-test dialog, as described above.

    If you have installed the Sesame2 backend, but it doesn't work, then you need to set up the correct environment variables. For me, adding /usr/lib64/jvm/java/jre/lib/amd64/server to LD_LIBRARY_PATH helped, but this varies depending on the distro and the architecture.

    Apparmor

    Some distributions using Apparmor have it set up in a way that prevents Akonadi from running its internal database server. This can result in a variety of fuzzy error messages, including but not limited to the following:

    • unknown error 255 when running akonadictl
    • "DB error: 'Could not open required defaults file: /home/$username/.local/share/akonadi/mysql.conf"

    You can solve this by running aa-complain mysqld with root privileges then reload apparmor. On KUbuntu this is:

    sudo aa-complain mysqld
    sudo /etc/init.d/apparmor reload
    

    Note that you might be using Apparmor even if it does not show up in the process list.

    Also note that some distributions ship an additional mysqld binary called mysqld-akonadi which has AppArmor set up correctly. If that's the case on your system and you see this problem nevertheless, there are two possible reasons:

    • Akonadi still uses mysqld instead of mysqld-akonadi. You can change that in Systemsettings -> Advanced -> Akonadi -> Server configuration.
    • AppArmor is not setup correctly for mysqld-akonadi either. Try running the aa-complain command noted above with mysqld-akonadi instead of mysqld.

    ---

    You will also experience this problem if you are running an encrypted home directory using encryptfs combined with AppArmor as the Akonadi apparmor profile currently does not account for an ecrypted home (common with Ubuntu Jaunty users). Error messages with include:

    • dmesg produces:
         ecryptfs_do_create: Failure to create dentry in lower fs; rc = [-13]
         ecryptfs_create: Failed to create file inlower filesystem
    
    • Akonadi will list the following errors:
         Akonadi server process not registered at D-Bus
    

    The fix is to edit the following file "/etc/apparmor.d/usr.sbin.mysqld-akonadi". Below the line:

          @{HOME}/.local/share/akonadi/** rwk,
    

    Add a new line:

          @{HOME}/.Private/** rwk,
    

    Restart apparmor and restart akonadi.


    Missing Prerequisite

    To use Akonadi you need to have the following packages installed (names might differ depending on your distribution):

    • The MySQL server (called mysql on OpenSuse)
    • The Qt4 MySQL plugin (called libqt4-sql-mysql on OpenSuse)

    If you compile Qt4 yourself, make sure to tell the configure script to build in MySQL support by passing it the '-plugin-sql-mysql' option. If configure cannot locate the necessary MySQL client code (i.e, says "MySQL support cannot be enabled due to functionality tests") then ensure that the corresponding package is installed (typically called [lib]mysql[client]-dev[el]). Also, depending on the install location of the MySQL headers, additional parameters to configure might be needed (eg. -I /usr/include/mysql on OpenSuse).

    If you get the Qt4 direct from Nokia, such as a download of

     qt-sdk-linux-x86_64-opensource-2009.05.bin
    

    you will ( by the command "akonadictl start") get an error at Test 1:

     Database driver not found.
     Details: The QtSQL driver 'QMYSQL' is required by your current Akonadi server configuration.
     The following drivers are installed: QSQLITE.
     Make sure the required driver is installed.
    

    The driver you need is libqsqlmysql.so

    Unfortunately this driver is not part of the distribution (until january 2010). You need to compile the source. Download it

     qt-everywhere-opensource-src-4.6.0.tar.bz
    

    configure and make as above. But the make install doesn't copy the driver. So you have to copy it by yourself:

     cp <qt-src-dir>/qt-everywhere-opensource-src-4.6.0/plugins/sqldrivers/libqsqlmysql.so /usr/local/bin/sqldrivers/ 
    

    But the Revision 4.6.1, such as qt-sdk-linux-x86_64-opensource-2010.xx.bin has the driver you needed.

    Environment Setup

    The Akonadi server searches for Akonadi agents and resources in the paths defined in the XDG_DATA_DIRS environment variable. If Akonadi complains about not finding agents or resources, check if this variable is set correctly. Also keep in mind that even if set in a current console session, it might not have been set when starting the server. Starting the server manually in the current console session excludes this cause.

    Table 'mysql. servers' doesn't exist

    If MySQL server log contains the following error: [ERROR] Can't open and lock privilege tables: Table 'mysql.servers' doesn't exist [ERROR] Cannot open mysql.db [ERROR] Cannot open mysql.user [ERROR] Cannot open mysql.event then, most probably, you don't have your MySQL configuration file in place. Copy it from /usr/share/config/akonadi/mysql-global.conf into ~/.config/akonadi/mysql-local.conf. (For debian and openSuSE users the file ist located in /etc/akonadi/mysql-global.conf). Then open it and uncomment the line sql_mode=strict_trans_tables. If, after that, you get the following errors: [ERROR] Plugin 'InnoDB' init function returned error. [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed. [ERROR] Unknown/unsupported table type: innodb [ERROR] Aborting then in the same file find the line that starts just like the one above (which you have uncommented), but has additional parameters, separated by commas (something like sql_mode=strict_trans_tables,strict_all_tables, ...etc). Comment the shorter sql_mode=... line and uncomment the longer one.

    Restarting after a previous error

    If you had problems starting Akonadi and fixed those (such as a missing package or the Apparmor problem) make sure that the Akonadi server is completely shut down before trying to start it again, by calling akonadictl stop on the command line. You can confirm that it was indeed shut down completely by running akonadictl status.

    Under some circumstances the Akonadi server can be stuck in a partially running state after a failure which will prevent the next attempt to start it to fail as well. Please file a bug report if you run into this problem including the self-test report of the initial problem.

    The so-called "Gentoo-Assert"

    That's an especially nasty problem that so far only affects users of source-based distributions, most prominently Gentoo. It is named after MySQL assertions like the following example and is most likely caused by a MySQL protocol mismatch between the MySQL server and the client library or the Qt MySQL driver.

    akonadiserver: libmysql.c:4301: setup_one_fetch_function: Assertion `param->buffer_length != 0' failed.

    It is extremely hard to diagnose as the assertion mentioned above are only triggered sometimes. Instead you'll get a wide range of weird symptoms:

    • ASAP protocol logs show successful creation of objects which are supposedly no longer available when the next commands accesses them again.
    • SQL protocol logs show INSERT or UPDATE commands with values that mismatch the corresponding column types and nevertheless succeed.
    • SQL protocol logs showing large apparently random record ids which are nevertheless considered valid.

    References:

    Possible solution: Rebuild the Qt MySQL driver after upgrading MySQL (which most likely caused this problem in the first place).