19.03.2024, 02:17 UhrDeutsch | English
Hallo Gast [ Registrierung | Anmelden ]

Neues Thema eröffnen   Neue Antwort erstellen
Vorheriges Thema anzeigen Druckerfreundliche Version Einloggen, um private Nachrichten zu lesen Nächstes Thema anzeigen
Autor Nachricht
guenterrau
22 Titel: kontact startet nicht MySQL-Fehler  BeitragVerfasst am: 30.09.2013, 16:57 Uhr



Anmeldung: 08. Sep 2011
Beiträge: 3

Hallo,
nachdem ich über fast 10 Jahre ein zufriedener Kanotix-User bin, bin ich
nach der Installation der LinuxTagVersion2013 total genervt.

kontact mit Kmail und Kaddrassbook ect. startet nicht.

Hier das Fehlerprotokoll.

Wer kann bitte helfen?

Vielen Dank.

Gruß

G. Rau


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/rau/.config/akonadi/akonadiserverrc':
[%General]
Driver=QMYSQL

[QMYSQL]
Name=akonadi
Host=
Options="UNIX_SOCKET=/home/rau/.local/share/akonadi/socket-KanotixBox2013/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: /usr/sbin/mysqld Ver 5.5.31-0+wheezy1 for debian-linux-gnu on x86_64 ((Debian))


Test 5: ERROR
--------

MySQL server log contains errors.
Details: The MySQL server error log file &apos;<a href='/home/rau/.local/share/akonadi/db_data/mysql.err'>/home/rau/.local/share/akonadi/db_data/mysql.err</a>&apos; contains errors.

File content of '/home/rau/.local/share/akonadi/db_data/mysql.err':
130930 17:43:14 [Note] Plugin 'FEDERATED' is disabled.
130930 17:43:14 InnoDB: The InnoDB memory heap is disabled
130930 17:43:14 InnoDB: Mutexes and rw_locks use GCC atomic builtins
130930 17:43:14 InnoDB: Compressed tables use zlib 1.2.7
130930 17:43:14 InnoDB: Using Linux native AIO
130930 17:43:14 InnoDB: Initializing buffer pool, size = 80.0M
130930 17:43:14 InnoDB: Completed initialization of buffer pool
InnoDB: Error: log file ./ib_logfile0 is of different size 0 67108856 bytes
InnoDB: than specified in the .cnf file 0 67108864 bytes!
130930 17:43:14 [ERROR] Plugin 'InnoDB' init function returned error.
130930 17:43:14 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
130930 17:43:14 [ERROR] Unknown/unsupported storage engine: innodb
130930 17:43:14 [ERROR] Aborting

130930 17:43:14 [Note] /usr/sbin/mysqld: Shutdown complete



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)
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_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

[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/rau/.local/share/akonadi/mysql.conf'>/home/rau/.local/share/akonadi/mysql.conf</a> and is readable.

File content of '/home/rau/.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)
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_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

[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.7.2


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: ERROR
--------

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

Test 13: 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 14: 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: ''. 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 list is empty.

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

Test 15: 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/rau/.local/share/akonadi/akonadiserver.error'>/home/rau/.local/share/akonadi/akonadiserver.error</a>.

File content of '/home/rau/.local/share/akonadi/akonadiserver.error':
Database process exited unexpectedly during initial connection!
executable: "/usr/sbin/mysqld"
arguments: ("--defaults-file=/home/rau/.local/share/akonadi/mysql.conf", "--datadir=/home/rau/.local/share/akonadi/db_data/", "--socket=/home/rau/.local/share/akonadi/socket-KanotixBox2013/mysql.socket")
stdout: ""
stderr: ""
exit code: 1
process error: "Unknown error"
"[
0: akonadiserver() [0x419eb4]
1: akonadiserver() [0x41a1f1]
2: /lib/x86_64-linux-gnu/libc.so.6(+0x324f0) [0x7f0e08b004f0]
3: /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x35) [0x7f0e08b00475]
4: /lib/x86_64-linux-gnu/libc.so.6(abort+0x180) [0x7f0e08b036f0]
5: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x122) [0x7f0e0a33c722]
6: akonadiserver() [0x41c13b]
7: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0xb4) [0x7f0e0a3d6944]
8: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x11c5ef) [0x7f0e0a3e15ef]
9: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x3b) [0x7f0e0a3e9beb]
10: akonadiserver() [0x4956ca]
11: akonadiserver() [0x41cf47]
12: akonadiserver() [0x41e605]
13: akonadiserver() [0x41fc27]
14: akonadiserver() [0x4132c3]
15: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfd) [0x7f0e08aecead]
16: akonadiserver() [0x413c21]
]
"


Test 16: 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/rau/.local/share/akonadi/akonadiserver.error.old'>/home/rau/.local/share/akonadi/akonadiserver.error.old</a>.

File content of '/home/rau/.local/share/akonadi/akonadiserver.error.old':
Database process exited unexpectedly during initial connection!
executable: "/usr/sbin/mysqld"
arguments: ("--defaults-file=/home/rau/.local/share/akonadi/mysql.conf", "--datadir=/home/rau/.local/share/akonadi/db_data/", "--socket=/home/rau/.local/share/akonadi/socket-KanotixBox2013/mysql.socket")
stdout: ""
stderr: ""
exit code: 1
process error: "Unknown error"
"[
0: akonadiserver() [0x419eb4]
1: akonadiserver() [0x41a1f1]
2: /lib/x86_64-linux-gnu/libc.so.6(+0x324f0) [0x7f67b08e14f0]
3: /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x35) [0x7f67b08e1475]
4: /lib/x86_64-linux-gnu/libc.so.6(abort+0x180) [0x7f67b08e46f0]
5: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x122) [0x7f67b211d722]
6: akonadiserver() [0x41c13b]
7: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0xb4) [0x7f67b21b7944]
8: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x11c5ef) [0x7f67b21c25ef]
9: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x3b) [0x7f67b21cabeb]
10: akonadiserver() [0x4956ca]
11: akonadiserver() [0x41cf47]
12: akonadiserver() [0x41e605]
13: akonadiserver() [0x41fc27]
14: akonadiserver() [0x4132c3]
15: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfd) [0x7f67b08cdead]
16: akonadiserver() [0x413c21]
]
"


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

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

Test 18: SUCCESS
--------

No previous Akonadi control error log found.
Details: The Akonadi control process did not report any errors during its previous startup.
 
 Benutzer-Profile anzeigen Private Nachricht senden  
Antworten mit Zitat Nach oben
Kano
Titel: kontact startet nicht MySQL-Fehler  BeitragVerfasst am: 30.09.2013, 17:27 Uhr



Anmeldung: 17. Dez 2003
Beiträge: 16783

Für Icedove ist dies ja auch nicht nötig, ist schon seit Jahren nicht vorinstalliert, wer was anderes will:

Code:
apt-get install virtuoso-minimal kdepim


Dann am besten mal neu starten.
 
 Benutzer-Profile anzeigen Private Nachricht senden  
Antworten mit Zitat Nach oben
guenterrau
Titel:   BeitragVerfasst am: 01.10.2013, 08:33 Uhr



Anmeldung: 08. Sep 2011
Beiträge: 3

Vielen Dank für den Hinweis. Ich habe das System vollkommen neu
installiert und anschließend die beiden zusätzlichen Pakete kdepim und virtuoso-minimal.

Allerdings ist immer noch etwas mit mysql nicht in Ordnung:

131001 9:28:45 [Note] Plugin 'FEDERATED' is disabled.
131001 9:28:45 InnoDB: The InnoDB memory heap is disabled
131001 9:28:45 InnoDB: Mutexes and rw_locks use GCC atomic builtins
131001 9:28:45 InnoDB: Compressed tables use zlib 1.2.7
131001 9:28:45 InnoDB: Using Linux native AIO
131001 9:28:45 InnoDB: Initializing buffer pool, size = 80.0M
131001 9:28:45 InnoDB: Completed initialization of buffer pool
InnoDB: Error: log file ./ib_logfile0 is of different size 0 67108856 bytes
InnoDB: than specified in the .cnf file 0 67108864 bytes!
131001 9:28:45 [ERROR] Plugin 'InnoDB' init function returned error.
131001 9:28:45 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
131001 9:28:45 [ERROR] Unknown/unsupported storage engine: innodb
131001 9:28:45 [ERROR] Aborting

131001 9:28:45 [Note] /usr/sbin/mysqld: Shutdown complete

Was muss ich machen?

Gruß

Günter
 
 Benutzer-Profile anzeigen Private Nachricht senden  
Antworten mit Zitat Nach oben
Beiträge vom vorherigen Thema anzeigen:     
Gehe zu:  
Alle Zeiten sind GMT + 1 Stunde
Neues Thema eröffnen   Neue Antwort erstellen
Vorheriges Thema anzeigen Druckerfreundliche Version Einloggen, um private Nachrichten zu lesen Nächstes Thema anzeigen
PNphpBB2 © 2003-2007 
 
Deutsch | English
Logos and trademarks are the property of their respective owners, comments are property of their posters, the rest is © 2004 - 2006 by Jörg Schirottke (Kano).
Consult Impressum and Legal Terms for details. Kanotix is Free Software released under the GNU/GPL license.
This CMS is powered by PostNuke, all themes used at this site are released under the GNU/GPL license. designed and hosted by w3you. Our web server is running on Kanotix64-2006.