web-dev-qa-db-fra.com

Kontact dans Kubuntu 16.10 ne démarrera pas car le serveur Akonadi ne démarrera pas

J'utilise Kubuntu 16.10 et je ne parviens pas à faire démarrer Kontact car Akonadi ne démarre pas. Vous trouverez ci-dessous le résultat de akonadictl start.

Il semble qu'il y ait quelque chose qui ne va vraiment pas chez Akonadi. Quelqu'un a-t-il une idée? Suis-je juste sol? Peut-on installer une version de niveau inférieur d’Akonadi et de Kontact?

trekker@trekker-HP-Notebook:/usr/bin$ akonadictl start
Starting Akonadi Server...
   done.
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
trekker@trekker-HP-Notebook:/usr/bin$ akonadiprivate_log: search paths:  ("/home/trekker/bin", "/home/trekker/.local/bin", "/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin", "/usr/games", "/usr/local/games", "/snap/bin", "/usr/sbin", "/usr/local/sbin", "/usr/local/libexec", "/usr/libexec", "/opt/mysql/libexec", "/opt/local/lib/mysql5/bin", "/opt/mysql/sbin")
Found mysql_install_db:  "/usr/bin/mysql_install_db"
Found mysqlcheck:  "/usr/bin/mysqlcheck"
Using mysqld: "/usr/sbin/mysqld-akonadi"
mysqld reports version 5.7.16 (Oracle MySQL)
Executing:  "/usr/sbin/mysqld-akonadi" "--defaults-file=/etc/xdg/akonadi/mysql-global.conf --initialize --datadir=/home/trekker/.local/share/akonadi/db_data/"
mysqld: [ERROR] Could not open required defaults file: /etc/xdg/akonadi/mysql-global.conf
mysqld: [ERROR] Fatal error in defaults handling. Program aborted!
Executing: "/usr/sbin/mysqld-akonadi" "--defaults-file=/home/trekker/.local/share/akonadi/mysql.conf --datadir=/home/trekker/.local/share/akonadi/db_data/ --socket=/tmp/akonadi-trekker.LbKUAD/mysql.socket"
Database process exited unexpectedly during initial connection!
executable: "/usr/sbin/mysqld-akonadi"
arguments: ("--defaults-file=/home/trekker/.local/share/akonadi/mysql.conf", "--datadir=/home/trekker/.local/share/akonadi/db_data/", "--socket=/tmp/akonadi-trekker.LbKUAD/mysql.socket")
stdout: ""
stderr: "mysqld: Error on realpath() on '/var/lib/mysql-files' (Error 2 - No such file or directory)\n2016-11-18T19:16:26.102182Z 0 [Warning] The syntax '--log_warnings/-W' is deprecated and will be removed in a future release. Please use '--log_error_verbosity' instead.\n2016-11-18T19:16:26.102229Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).\n2016-11-18T19:16:26.102276Z 0 [ERROR] Failed to access directory for --secure-file-priv. Please make sure that directory exists and is accessible by MySQL Server. Supplied value : /var/lib/mysql-files\n2016-11-18T19:16:26.102279Z 0 [ERROR] Aborting\n\n2016-11-18T19:16:26.102290Z 0 [Note] Binlog end\n"
exit code: 1
process error: "Unknown error"
terminating service threads
terminating connection threads
stopping db process
Failed to remove Unix socket
Failed to remove runtime connection config file
Application 'akonadiserver' exited normally...

trekker@trekker-HP-Notebook:/usr/bin$ 

Il semble que j'ai trouvé une solution. Basé sur un fil que j'ai trouvé dans les forums Kubuntu, j'ai fait ce qui suit:

Sudo mkdir/var/lib/mysql-files

3
monon

Résolution du problème en supprimant le répertoire de configuration local rm ~/.local/share/akonadi et en le redémarrant avec akonadictl start

3

Si vous avez modifié l'emplacement de votre dossier de base, y compris les liens symboliques, le problème est dû à Apparmor.

Éditez /etc/apparmor.d/tunable/home et ajoutez votre nouvelle maison, par exemple:

@{HOMEDIRS}=/home/

à

@{HOMEDIRS}=/home/ /somewhere/home/

ensuite

Sudo /etc/init.d/apparmor restart 

1
tomtom

J'ai résolu le problème avec ces étapes:

Créé le dossier:

Sudo mkdir /var/lib/mysql-files

Commencé le service:

akonadictl start

Purgé et réinstallé Kontact:

Sudo apt purge kontact && Sudo apt install Kontact

Démarrer Kmail

J'espère que cela t'aides.

Cordialement.

1
ChristCB

pour moi cela n'a pas aidé (lubuntu 17.04) mais j'ai trouvé ceci bug

donc cela a résolu mon problème:

Sudo apt-get install apparmor-utils
Sudo aa-complain usr.sbin.mysqld-akonadi
0
altagir