https://bugs.kde.org/show_bug.cgi?id=397634
Daniel Vrátil <dvra...@kde.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dvra...@kde.org --- Comment #1 from Daniel Vrátil <dvra...@kde.org> --- Akonadi can only start MariaDB/MySQL in the local socket mode, and I'm quite surprised that tools like adminer cannot connect to a socket as well. However, if you take care of starting the database server yourself (usually as a system-wide service), you can configure Akonadi to connect to that database instead of its custom instance. We currently don't have any GUI to do that, so manually changing ~/.config/akonadiserverrc is needed: [QMYSQL] Name=akonadi Host=localhost User=username Password=youpassword StartServer=false And that should work...:) Regarding your questions: 1) No password, as long as the connecting applications is running under the same user as the database server. No port either, Akonadi is communicating via a local socket 2) There's no difference to Akonadi whether you use "internal" or "external" DB. The only difference is that in case of "external" DB, it's up to you to make sure the database server is started before starting Akonadi 3) Yes, you can just dump everything from the internal DB and import it to your system-wide instance, then you just need to adjust the configuration as described above and make sure the system-wide instance is autostarted 4) It should be OK, some distributions ship Oracle MySQL as default and Akonadi works there as well 5) Indeed, use mysqldump to dump everything from the internal MySQL db and import it into your system-wide database, then adjust the Akonadi configuration in ~/.config/akonadi/akonadiserverrc and you should be good. Make sure that when you are manipulating the database that Akonadi is not running (you can use the "akonadictl" CLI tool to check the status, stop and start Akonadi) - I recommend that for the migration you start the Akonadi's MySQL db manually to make sure Akonadi is not changing the content of the DB while you are migrating it. -- You are receiving this mail because: You are watching all bug changes.