Akonadi nach Update von MySql tot?

Du hast Probleme mit Deinem eMail-Programm, Webbrowser oder Textprogramm? Dein Lieblingsprogramm streikt?
Antworten
am2
Beiträge: 276
Registriert: 20.08.2016 21:56:44

Akonadi nach Update von MySql tot?

Beitrag von am2 » 08.11.2016 17:06:44

Ich habe heute auf meinen zwei Rechnern (beide mit Jessie bestückt) apt update && apt upgrade laufen lassen. Danach hat Akonadi den Start verweigert. Es wäre mir sch...egal, aber ich komme an meine E-Mails nicht mehr dran. Ein Manueller start/stop gibt: D-Bus session bus is not available! Gibt es da eine Möglichkeit, dem Umstand abzuhelfen? Bis zum Update hat alles perfekt gefunzt... Hier das Protokoll:

Code: Alles auswählen

Akonadi Server Self-Test Report
===============================

Test 1:  SUCCESS
--------

Database driver found.
Details: The QtSQL driver 'QMYSQL' is required by your current Akonadi server configuration and was found on your system.

File content of '/home/matz/.config/akonadi/akonadiserverrc':
[%General]
Driver=QMYSQL

[QMYSQL]
Name=akonadi
Host=
Options="UNIX_SOCKET=/tmp/akonadi-matz.1xeiTK/mysql.socket"
ServerPath=/usr/sbin/mysqld
StartServer=true

[Debug]
Tracer=null


Test 2:  SUCCESS
--------

Akonadi is not running as root
Details: Akonadi is not running as a root/administrator user, which is the recommended setup for a secure system.

Test 3:  SUCCESS
--------

MySQL server found.
Details: You have currently configured Akonadi to use the MySQL server '/usr/sbin/mysqld'.
Make sure you have the MySQL server installed, set the correct path and ensure you have the necessary read and execution rights on the server executable. The server executable is typically called 'mysqld'; its location varies depending on the distribution.

Test 4:  SUCCESS
--------

MySQL server is executable.
Details: MySQL server found: 161108 15:39:05 [Warning] Using unique option prefix key_buffer instead of key_buffer_size is deprecated and will be removed in a future release. Please use the full name instead.
/usr/sbin/mysqld  Ver 5.5.53-0+deb8u1 for debian-linux-gnu on x86_64 ((Debian))


Test 5:  SUCCESS
--------

No current MySQL error log found.
Details: The MySQL server did not report any errors during this startup. The log can be found in '/home/matz/.local/share/akonadi/db_data/mysql.err'.

Test 6:  SUCCESS
--------

MySQL server default configuration found.
Details: The default configuration for the MySQL server was found and is readable at <a href='/etc/akonadi/mysql-global.conf'>/etc/akonadi/mysql-global.conf</a>.

File content of '/etc/akonadi/mysql-global.conf':
#
# Global Akonadi MySQL server settings,
# These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
#
# Based on advice by Kris Köhntopp <kris@mysql.com>
#
[mysqld]

# strict query parsing/interpretation
# TODO: make Akonadi work with those settings enabled
# sql_mode=strict_trans_tables,strict_all_tables,strict_error_for_division_by_zero,no_auto_create_user,no_auto_value_on_zero,no_engine_substitution,no_zero_date,no_zero_in_date,only_full_group_by,pipes_as_concat
# sql_mode=strict_trans_tables

# DEBUGGING:
# log all queries, useful for debugging but generates an enormous amount of data
# log=mysql.full
# log queries slower than n seconds, log file name relative to datadir (for debugging only)
# log_slow_queries=mysql.slow
# long_query_time=1
# log queries not using indices, debug only, disable for production use
# log_queries_not_using_indexes=1
#
# mesure database size and adjust innodb_buffer_pool_size
# SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");

# NOTES:
# Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)

#expire_logs_days=3

#sync_bin_log=0

# Use UTF-8 encoding for tables
character_set_server=utf8
collation_server=utf8_general_ci

# use InnoDB for transactions and better crash recovery
default_storage_engine=innodb

# memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
# Deprecated in MySQL >= 5.6.3
innodb_additional_mem_pool_size=1M

# memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
# Larger values means less I/O
innodb_buffer_pool_size=80M

# Create a .ibd file for each table (default:0)
innodb_file_per_table=1

# Write out the log buffer to the log file at each commit (default:1)
innodb_flush_log_at_trx_commit=2

# Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
# larger values means less I/O
innodb_log_buffer_size=1M

# Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
innodb_log_file_size=64M

# # error log file name, relative to datadir (default:hostname.err)
log_error=mysql.err

# print warnings and connection errors (default:1)
log_warnings=2

# Convert table named to lowercase
lower_case_table_names=1

# Maximum size of one packet or any generated/intermediate string. (default:1M)
max_allowed_packet=32M

# Maximum simultaneous connections allowed (default:100)
max_connections=256

# The two options below make no sense with prepared statements and/or transactions
# (make sense when having the same query multiple times)

# Memory allocated for caching query results (default:0 (disabled))
query_cache_size=0

# Do not cache results (default:1)
query_cache_type=0

# Do not use the privileges mechanisms
skip_grant_tables

# Do not listen for TCP/IP connections at all
skip_networking

# The number of open tables for all threads. (default:64)
table_open_cache=200

# How many threads the server should cache for reuse (default:0)
thread_cache_size=3

# wait 365d before dropping the DB connection (default:8h)
wait_timeout=31536000

# We use InnoDB, so don't let MyISAM eat up memory
key_buffer_size=16K

[client]
default-character-set=utf8


Test 7:  SKIP
--------

MySQL server custom configuration not available.
Details: The custom configuration for the MySQL server was not found but is optional.

Test 8:  SUCCESS
--------

MySQL server configuration is usable.
Details: The MySQL server configuration was found at <a href='/home/matz/.local/share/akonadi/mysql.conf'>/home/matz/.local/share/akonadi/mysql.conf</a> and is readable.

File content of '/home/matz/.local/share/akonadi/mysql.conf':
#
# Global Akonadi MySQL server settings,
# These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
#
# Based on advice by Kris Köhntopp <kris@mysql.com>
#
[mysqld]

# strict query parsing/interpretation
# TODO: make Akonadi work with those settings enabled
# sql_mode=strict_trans_tables,strict_all_tables,strict_error_for_division_by_zero,no_auto_create_user,no_auto_value_on_zero,no_engine_substitution,no_zero_date,no_zero_in_date,only_full_group_by,pipes_as_concat
# sql_mode=strict_trans_tables

# DEBUGGING:
# log all queries, useful for debugging but generates an enormous amount of data
# log=mysql.full
# log queries slower than n seconds, log file name relative to datadir (for debugging only)
# log_slow_queries=mysql.slow
# long_query_time=1
# log queries not using indices, debug only, disable for production use
# log_queries_not_using_indexes=1
#
# mesure database size and adjust innodb_buffer_pool_size
# SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");

# NOTES:
# Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)

#expire_logs_days=3

#sync_bin_log=0

# Use UTF-8 encoding for tables
character_set_server=utf8
collation_server=utf8_general_ci

# use InnoDB for transactions and better crash recovery
default_storage_engine=innodb

# memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
# Deprecated in MySQL >= 5.6.3
innodb_additional_mem_pool_size=1M

# memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
# Larger values means less I/O
innodb_buffer_pool_size=80M

# Create a .ibd file for each table (default:0)
innodb_file_per_table=1

# Write out the log buffer to the log file at each commit (default:1)
innodb_flush_log_at_trx_commit=2

# Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
# larger values means less I/O
innodb_log_buffer_size=1M

# Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
innodb_log_file_size=64M

# # error log file name, relative to datadir (default:hostname.err)
log_error=mysql.err

# print warnings and connection errors (default:1)
log_warnings=2

# Convert table named to lowercase
lower_case_table_names=1

# Maximum size of one packet or any generated/intermediate string. (default:1M)
max_allowed_packet=32M

# Maximum simultaneous connections allowed (default:100)
max_connections=256

# The two options below make no sense with prepared statements and/or transactions
# (make sense when having the same query multiple times)

# Memory allocated for caching query results (default:0 (disabled))
query_cache_size=0

# Do not cache results (default:1)
query_cache_type=0

# Do not use the privileges mechanisms
skip_grant_tables

# Do not listen for TCP/IP connections at all
skip_networking

# The number of open tables for all threads. (default:64)
table_open_cache=200

# How many threads the server should cache for reuse (default:0)
thread_cache_size=3

# wait 365d before dropping the DB connection (default:8h)
wait_timeout=31536000

# We use InnoDB, so don't let MyISAM eat up memory
key_buffer_size=16K

[client]
default-character-set=utf8


Test 9:  SUCCESS
--------

akonadictl found and usable
Details: The program '/usr/bin/akonadictl' to control the Akonadi server was found and could be executed successfully.
Result:
Akonadi 1.13.0


Test 10:  ERROR
--------

Akonadi control process not registered at D-Bus.
Details: The Akonadi control process is not registered at D-Bus which typically means it was not started or encountered a fatal error during startup.

Test 11:  ERROR
--------

Akonadi server process not registered at D-Bus.
Details: The Akonadi server process is not registered at D-Bus which typically means it was not started or encountered a fatal error during startup.

Test 12:  SKIP
--------

Protocol version check not possible.
Details: Without a connection to the server it is not possible to check if the protocol version meets the requirements.

Test 13:  ERROR
--------

No resource agents found.
Details: No resource agents have been found, Akonadi is not usable without at least one. This usually means that no resource agents are installed or that there is a setup problem. The following paths have been searched: '/usr/share/akonadi/agents'. The XDG_DATA_DIRS environment variable is set to '/usr/share:/usr/share:/usr/local/share'; make sure this includes all paths where Akonadi agents are installed.

Directory listing of '/usr/share/akonadi/agents':
akonadinepomukfeederagent.desktop
akonotesresource.desktop
archivemailagent.desktop
birthdaysresource.desktop
contactsresource.desktop
davgroupwareresource.desktop
folderarchiveagent.desktop
followupreminder.desktop
googlecalendarresource.desktop
googlecontactsresource.desktop
icaldirresource.desktop
icalresource.desktop
imapresource.desktop
invitationsagent.desktop
kabcresource.desktop
kalarmdirresource.desktop
kalarmresource.desktop
kcalresource.desktop
kdeaccountsresource.desktop
kolabproxyresource.desktop
kolabresource.desktop
localbookmarksresource.desktop
maildirresource.desktop
maildispatcheragent.desktop
mailfilteragent.desktop
mboxresource.desktop
migrationagent.desktop
mixedmaildirresource.desktop
mtdummyresource.desktop
newmailnotifieragent.desktop
nntpresource.desktop
notesagent.desktop
notesresource.desktop
openxchangeresource.desktop
pop3resource.desktop
sendlateragent.desktop
vcarddirresource.desktop
vcardresource.desktop

Environment variable XDG_DATA_DIRS is set to '/usr/share:/usr/share:/usr/local/share'

Test 14:  ERROR
--------

Current Akonadi server error log found.
Details: The Akonadi server reported errors during its current startup. The log can be found in <a href='/home/matz/.local/share/akonadi/akonadiserver.error'>/home/matz/.local/share/akonadi/akonadiserver.error</a>.

File content of '/home/matz/.local/share/akonadi/akonadiserver.error':
Database process exited unexpectedly during initial connection! 
executable: "/usr/sbin/mysqld" 
arguments: ("--defaults-file=/home/matz/.local/share/akonadi/mysql.conf", "--datadir=/home/matz/.local/share/akonadi/db_data/", "--socket=/tmp/akonadi-matz.1xeiTK/mysql.socket") 
stdout: "" 
stderr: "/usr/sbin/mysqld: Error on realpath() on '/var/lib/mysql-files' (Error 2)
161108 15:37:59 [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
161108 15:37:59 [ERROR] Aborting

" 
exit code: 1 
process error: "Unknown error" 
"[
0: akonadiserver() [0x418c9a]
1: akonadiserver() [0x418f14]
2: /lib/x86_64-linux-gnu/libc.so.6(+0x350e0) [0x7f29c819f0e0]
3: /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x37) [0x7f29c819f067]
4: /lib/x86_64-linux-gnu/libc.so.6(abort+0x148) [0x7f29c81a0448]
5: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x12a) [0x7f29c99a9a9a]
6: akonadiserver() [0x41ad1d]
7: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0x8a) [0x7f29c9a4923a]
8: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x120855) [0x7f29c9a58855]
9: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x31) [0x7f29c9a611b1]
10: akonadiserver() [0x481eee]
11: akonadiserver() [0x41b91f]
12: akonadiserver() [0x41e008]
13: akonadiserver() [0x4e29e9]
14: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN7QObject5eventEP6QEvent+0x1e1) [0x7f29c9ad7e11]
15: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN16QCoreApplication14notifyInternalEP7QObjectP6QEvent+0x8d) [0x7f29c9abe71d]
16: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN23QCoreApplicationPrivate16sendPostedEventsEP7QObjectiP11QThreadData+0x231) [0x7f29c9ac1fc1]
17: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x1b5bd3) [0x7f29c9aedbd3]
18: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_dispatch+0x24d) [0x7f29c7868c5d]
19: /lib/x86_64-linux-gnu/libglib-2.0.so.0(+0x49f48) [0x7f29c7868f48]
20: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_iteration+0x2c) [0x7f29c7868ffc]
21: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE+0x5d) [0x7f29c9aedd1d]
22: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN10QEventLoop13processEventsE6QFlagsINS_17ProcessEventsFlagEE+0x41) [0x7f29c9abd271]
23: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE+0x1a5) [0x7f29c9abd5d5]
24: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN16QCoreApplication4execEv+0x99) [0x7f29c9ac3059]
25: akonadiserver() [0x4131c5]
26: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5) [0x7f29c818bb45]
27: akonadiserver() [0x413bee]
]
" 


Test 15:  ERROR
--------

Previous Akonadi server error log found.
Details: The Akonadi server reported errors during its previous startup. The log can be found in <a href='/home/matz/.local/share/akonadi/akonadiserver.error.old'>/home/matz/.local/share/akonadi/akonadiserver.error.old</a>.

File content of '/home/matz/.local/share/akonadi/akonadiserver.error.old':
Database process exited unexpectedly during initial connection! 
executable: "/usr/sbin/mysqld" 
arguments: ("--defaults-file=/home/matz/.local/share/akonadi/mysql.conf", "--datadir=/home/matz/.local/share/akonadi/db_data/", "--socket=/tmp/akonadi-matz.1xeiTK/mysql.socket") 
stdout: "" 
stderr: "/usr/sbin/mysqld: Error on realpath() on '/var/lib/mysql-files' (Error 2)
161108 15:37:59 [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
161108 15:37:59 [ERROR] Aborting

" 
exit code: 1 
process error: "Unknown error" 
"[
0: akonadiserver() [0x418c9a]
1: akonadiserver() [0x418f14]
2: /lib/x86_64-linux-gnu/libc.so.6(+0x350e0) [0x7f52d60270e0]
3: /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x37) [0x7f52d6027067]
4: /lib/x86_64-linux-gnu/libc.so.6(abort+0x148) [0x7f52d6028448]
5: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x12a) [0x7f52d7831a9a]
6: akonadiserver() [0x41ad1d]
7: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0x8a) [0x7f52d78d123a]
8: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x120855) [0x7f52d78e0855]
9: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x31) [0x7f52d78e91b1]
10: akonadiserver() [0x481eee]
11: akonadiserver() [0x41b91f]
12: akonadiserver() [0x41e008]
13: akonadiserver() [0x4e29e9]
14: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN7QObject5eventEP6QEvent+0x1e1) [0x7f52d795fe11]
15: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN16QCoreApplication14notifyInternalEP7QObjectP6QEvent+0x8d) [0x7f52d794671d]
16: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN23QCoreApplicationPrivate16sendPostedEventsEP7QObjectiP11QThreadData+0x231) [0x7f52d7949fc1]
17: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x1b5bd3) [0x7f52d7975bd3]
18: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_dispatch+0x24d) [0x7f52d56f0c5d]
19: /lib/x86_64-linux-gnu/libglib-2.0.so.0(+0x49f48) [0x7f52d56f0f48]
20: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_iteration+0x2c) [0x7f52d56f0ffc]
21: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE+0x5d) [0x7f52d7975d1d]
22: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN10QEventLoop13processEventsE6QFlagsINS_17ProcessEventsFlagEE+0x41) [0x7f52d7945271]
23: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE+0x1a5) [0x7f52d79455d5]
24: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN16QCoreApplication4execEv+0x99) [0x7f52d794b059]
25: akonadiserver() [0x4131c5]
26: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5) [0x7f52d6013b45]
27: akonadiserver() [0x413bee]
]
" 


Test 16:  SUCCESS
--------

No current Akonadi control error log found.
Details: The Akonadi control process did not report any errors during its current startup.

Test 17:  SUCCESS
--------

No previous Akonadi control error log found.
Details: The Akonadi control process did not report any errors during its previous startup.

blutigerAnfänger
Beiträge: 100
Registriert: 04.01.2005 09:38:14

Re: Akonadi nach Update von MySql tot?

Beitrag von blutigerAnfänger » 08.11.2016 18:27:19

Da meckert doch ein Prozess, das entweder das Verzeichnis fehlt oder die Rechte fehlen zuzugreifen:
stderr: "/usr/sbin/mysqld: Error on realpath() on '/var/lib/mysql-files' (Error 2)
161108 15:37:59 [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
161108 15:37:59 [ERROR] Aborting
Vielleicht wurde während des Updates der Ordner von einem anderen User erstellt oder die Rechte fehlen bzw. der Ordner fehlt ganz.

Gruß
blutigerAnfänger

Rechtlicher Hinweis: Anwendung auf eigene Gefahr. Ich hafte für nichts, egal was.

am2
Beiträge: 276
Registriert: 20.08.2016 21:56:44

Re: Akonadi nach Update von MySql tot?

Beitrag von am2 » 08.11.2016 18:38:07

Ja, '/var/lib/mysql-files' fehlt tatsächlich. Nur bringt mich das leider auch nicht weiter...

DeletedUserReAsG

Re: Akonadi nach Update von MySql tot?

Beitrag von DeletedUserReAsG » 08.11.2016 18:43:26

Besteht die Möglichkeit, den Kram nach NoPaste oder sonstwohin zu stellen, so dass man beides, den eigentlichen Post und das Gepastete, vernünftig lesen kann?

blutigerAnfänger
Beiträge: 100
Registriert: 04.01.2005 09:38:14

Re: Akonadi nach Update von MySql tot?

Beitrag von blutigerAnfänger » 08.11.2016 18:47:18

Laut anderen Foren handelt es sich um einen Bug: https://bugs.kde.org/show_bug.cgi?id=366400. User berichten das das Erstellen des Verzeichnisses den Bug behoben hätte. Vielleicht hilft es bei Dir auch.

Gruß
blutigerAnfänger

Rechtlicher Hinweis: Anwendung auf eigene Gefahr. Ich hafte für nichts, egal was.

am2
Beiträge: 276
Registriert: 20.08.2016 21:56:44

Re: Akonadi nach Update von MySql tot?

Beitrag von am2 » 08.11.2016 21:16:42

@niemand, ja du hast Recht, aber siehe unten...

@blutigerAnfänger, das habe ich bereits gemacht. Geholfen hat es aber alle E-Mail-Filter und -Zugänge sind im Ar... , alle K-Mail-Einstellungen sind in Nirvana, zusammen mit den Anlegen des verschwundenen Ordners klaffte ein Schwarzes Loch auf und verschlang alles.

Und ich? Ich bin einfach nur wütend, weil Jessie mein Produktiv-System ist und ich momentan nicht weiß, ob ich diesem Krempel noch vertrauen kann... Ich dachte sogar schon an Windows 10 aber vielleicht wechsle ich einfach mal zum Apfel. SO EIN SCHEISS AUCH!!!

Trotz aller Wut, Empörung und immer noch mieser Laune - ich bedanke mich für die Unterstützung

DeletedUserReAsG

Re: Akonadi nach Update von MySql tot?

Beitrag von DeletedUserReAsG » 08.11.2016 21:27:01

Ich dachte sogar schon an Windows 10 aber vielleicht wechsle ich einfach mal zum Apfel.
Warum nicht? Da kannste dann ’nen Support anschreien, wenn dein System ’nen Fehler hat und du’s so gestaltet hast, dass du in dem Fall nicht mehr an deine Daten kommst.

Solltest du dich entschließen, den Fehler finden und beheben zu wollen, sag’ Bescheid und schau’ mal ein paar Sachen nach. Etwa, ob dbus läuft, wenn nein, ob’s sich starten lässt, wenn nein, welche Meldung es direkt oder in den Logs hinterlässt, usw..

am2
Beiträge: 276
Registriert: 20.08.2016 21:56:44

Re: Akonadi nach Update von MySql tot?

Beitrag von am2 » 08.11.2016 23:23:47

Weißt du was? Weder Redmond 10 noch das faule Stück Obst der Gattung OSX. Warum? Mach mal ettercap und Kabelhai an, das reicht ;)

dbus läuft, akonadi auch, die E-Mail-Geschichte wird nach und nach wieder aufgebaut. Klar war ich kurz davor die IT unter die Dampfwalze zu schmeißen, so was soll wirklich nicht sein. Nicht, wenn es der Rechner ist, auf dem deine Prototypen liegen, mit denen du ständig zu tun hast. (Und ja, sie sind gesichert - aber TROTZDEM!) Dazu kommt noch die Frage ob ich es war oder doch eine höhere Gewalt. Ich zweifle mich immer zuerst an, es sei denn, der Fall ist kristallklar. Das war es heute nicht sofort.

Nun denn, schön, dass es die Community gibt und dass so was doch relativ schnell geklärt werden kann.

Benutzeravatar
Friedrich55
Beiträge: 12
Registriert: 08.11.2005 12:21:25
Lizenz eigener Beiträge: MIT Lizenz
Wohnort: 561xx bei Koblenz

Re: Akonadi nach Update von MySql tot?

Beitrag von Friedrich55 » 09.11.2016 08:59:17

Moin,

folgendes hat auf meinen Rechnern das Problem gelöst:

1.
Als root:
mkdir /var/lib/mysql-files

2.
Als user:
akonadictl start

LG Friedrich

loveXcraft
Beiträge: 1
Registriert: 09.11.2016 10:30:22

Re: Akonadi nach Update von MySql tot?

Beitrag von loveXcraft » 09.11.2016 10:35:50

Hallo hier eine Mögliche vorübergehende Lösung ...

Workarround according to --> https://mail-archive.com/debian-bugs-di ... 68760.html

I was able to fix it by adding "secure_file_priv=" to
~/.local/share/akonadi/mysql.conf

Ich konnte mein eMail so wieder in Ordnung bringen.

Ich denke die Lösung von Friedrich55 ist besser wenn sie funktioniert ;).

Liebe Grüße,

loveXcraft

marcus70
Beiträge: 7
Registriert: 10.09.2014 14:23:35

Re: Akonadi nach Update von MySql tot?

Beitrag von marcus70 » 09.11.2016 11:38:58

Hallo,

ich hatte gestern nach dem von mir angestoßenen Update von 3 Pakteten (mysql) das gleiche Problem mit kmail. Der Beitrag von Friedrich55 hat mir sehr geholfen und auch bei mir das Problem behoben. Auch bei mir existierte das Verzeichnis in /var/lib/ so zu diesem Zeitpunkt noch nicht. Jetzt läuft kmail wieder und ich kann auf meine mails wieder zugreifen. Friedrich55 sei Dank!!!! :hail:

Ich überlege allerdings den mail-client zu wechseln. Dann ohne mysql und/oder akonadi.

Benutzeravatar
Lord_Carlos
Beiträge: 5578
Registriert: 30.04.2006 17:58:52
Lizenz eigener Beiträge: GNU Free Documentation License
Wohnort: Dänemark

Re: Akonadi nach Update von MySql tot?

Beitrag von Lord_Carlos » 09.11.2016 12:47:53

Oh Gott /o\

Danke Friedrich55, das hat geholfen.

Code: Alles auswählen

╔═╗┬ ┬┌─┐┌┬┐┌─┐┌┬┐╔╦╗
╚═╗└┬┘└─┐ │ ├┤ │││ ║║
╚═╝ ┴ └─┘ ┴ └─┘┴ ┴═╩╝ rockt das Forum!

am2
Beiträge: 276
Registriert: 20.08.2016 21:56:44

Re: Akonadi nach Update von MySql tot?

Beitrag von am2 » 09.11.2016 15:29:03

marcus70 hat geschrieben: (...)
Ich überlege allerdings den mail-client zu wechseln. Dann ohne mysql und/oder akonadi.
Geht mir genauso. Ich fand allerdings noch nichts, was so gut mit KDE zusammen arbeitet wie K-Mail. Unter Gnome herrscht der Donnervogel, ganz früher war der Mail-Client von Opera super in Ordnung aber bekanntlich ändern sich die Dinge im Leben...

DeletedUserReAsG

Re: Akonadi nach Update von MySql tot?

Beitrag von DeletedUserReAsG » 09.11.2016 15:32:15

Ich dachte, unter Gnome wäre Evolution der MUA der Wahl? Welche Anforderungen stellst du denn an die Zusammenarbeit mit KDE, bzw., was muss man sich darunter vorstellen? Nutzen kann man schließlich jeden beliebigen Client unter jedem beliebigen DE.

am2
Beiträge: 276
Registriert: 20.08.2016 21:56:44

Re: Akonadi nach Update von MySql tot?

Beitrag von am2 » 09.11.2016 20:50:22

Bei K-Mail gefällt mir vor allem die Integration der Kryptografie. Donnervogel kann mit Enigmail jede Nachricht verschlüsseln, die Anhänge muss man jedoch separat verschlüsseln und danach anhängen. K-Mail kriegt beides auf die Reihe und es braucht kein Extra-Plugin für die Verschlüsselung.

Um evtl. Missverständnisse auszuräumen - ich schreibe vom Donnervogel unter Gnome. Evolution hatte ich mal kurze Zeit genutzt, gefiel mir aber irgendwie nicht. K-Mail war anfangs auch in der "Was für ein Scheiß!"-Kategorie, bis es mich überzeugen konnte. Allerdings bin ich nach dem neuesten MySQL-Zwischenfall wieder für vieles offen...

DeletedUserReAsG

Re: Akonadi nach Update von MySql tot?

Beitrag von DeletedUserReAsG » 09.11.2016 21:14:01

Hmm … bei mir kommt bei ’nem Anhang ein recht umfangreiches Dialogfenster, in dem ich auswählen kann, was ich alles verschlüsseln möchte, und auf welche Art – unter Anderem, ob die Anhänge auch verschlüsselt werden sollen. Thunderbird mit Enigmail.

am2
Beiträge: 276
Registriert: 20.08.2016 21:56:44

Re: Akonadi nach Update von MySql tot?

Beitrag von am2 » 09.11.2016 21:29:38

Dann habe ich offensichtlich halbherzig agiert... Ich schaue nochmal nach.

linaz
Beiträge: 1
Registriert: 02.01.2016 16:32:10

Re: Akonadi nach Update von MySql tot?

Beitrag von linaz » 11.11.2016 18:13:01

Vielen Dank Friedrich55
Auf meinen Zweitrechner vor dem Update den fehlenden Ordner /var/lib/mysql-files erstelt ,danach konnte ich problemlos K-Mail starten.

Benutzeravatar
Lord_Carlos
Beiträge: 5578
Registriert: 30.04.2006 17:58:52
Lizenz eigener Beiträge: GNU Free Documentation License
Wohnort: Dänemark

Re: Akonadi nach Update von MySql tot?

Beitrag von Lord_Carlos » 16.11.2016 06:58:20

The following packages will be upgraded:
akonadi-backend-mysql akonadi-backend-sqlite akonadi-server libakonadiprotocolinternals1


Na .. wer traut sich? :D

Code: Alles auswählen

╔═╗┬ ┬┌─┐┌┬┐┌─┐┌┬┐╔╦╗
╚═╗└┬┘└─┐ │ ├┤ │││ ║║
╚═╝ ┴ └─┘ ┴ └─┘┴ ┴═╩╝ rockt das Forum!

DeletedUserReAsG

Re: Akonadi nach Update von MySql tot?

Beitrag von DeletedUserReAsG » 16.11.2016 07:00:15

Announcement dazu:
Package : akonadi
Debian Bug : 843534

In some configurations the MySQL storage backend for Akonadi, an
extensible cross-desktop Personal Information Management (PIM) storage
service failed to start after applying the MySQL 5.5.53 security upgrade.

This update extends the /etc/akonadi/mysql-global.conf configuration
file to restore compatibility (version 1.13.0-2+deb8u2).

Benutzeravatar
Friedrich55
Beiträge: 12
Registriert: 08.11.2005 12:21:25
Lizenz eigener Beiträge: MIT Lizenz
Wohnort: 561xx bei Koblenz

Re: Akonadi nach Update von MySql tot?

Beitrag von Friedrich55 » 16.11.2016 10:52:36

Lord_Carlos hat geschrieben:The following packages will be upgraded:
akonadi-backend-mysql akonadi-backend-sqlite akonadi-server libakonadiprotocolinternals1


Na .. wer traut sich? :D
Keine Angst, Akonadi lläuft nach dem Sicherheitsupdate weiterhin ohne Probleme und das Problem ist damit endgültig beseitigt. Ich habs gerade auch auf einem Rechner durchgeführt, bei dem ich das Update vor einer Woche nicht durchgeführt habe - und Akonadi läuft hier problemlos.

Das war jetzt bei meinen produktiven Rechnern das erste Mal seit 2005, daß Debian stable nach einem Sicherheitsupdate spürbare Probleme hatte. Es ist natürlich blöd, wenn man dann dringend auf bestimmte Daten zugreifen muß und es aber nicht geht. Aber bei anderen berühmten Betriebssystemen passiert das auch. Nichts ist fehlerfrei. Ich mag trotzdem Debian und bin dankbar das es so gut läuft!

Es freut mich sehr, daß ich mit meinem Hinweis einigen von Euch aus der Patsche helfen konnte! :D

Damit durfte ich auch mal was zurückgeben.

LG Friedrich

Antworten