Ticket #33998: akonadi-selftest-report-20121021.txt

File akonadi-selftest-report-20121021.txt, 16.9 KB (added by mparchet@…, 12 years ago)
Line 
1Akonadi Server Self-Test Report
2===============================
3
4Test 1:  SUCCESS
5--------
6
7Database driver found.
8Details: The QtSQL driver 'QMYSQL' is required by your current Akonadi server configuration and was found on your system.
9
10File content of '/Users/rparchet/.config/akonadi/akonadiserverrc':
11[%General]
12Driver=QMYSQL
13
14[QMYSQL]
15Name=akonadi
16Host=
17Options="UNIX_SOCKET=/Users/rparchet/.local/share/akonadi/socket-MacBook-Pro-de-Michael.local/mysql.socket"
18ServerPath=/opt/local/libexec/mysqld
19StartServer=true
20
21
22Test 2:  SUCCESS
23--------
24
25Akonadi is not running as root
26Details: Akonadi is not running as a root/administrator user, which is the recommended setup for a secure system.
27
28Test 3:  SUCCESS
29--------
30
31MySQL server found.
32Details: You have currently configured Akonadi to use the MySQL server '/opt/local/libexec/mysqld'.
33Make 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.
34
35Test 4:  SUCCESS
36--------
37
38MySQL server is executable.
39Details: MySQL server found: /opt/local/libexec/mysqld  Ver 5.1.66 for apple-darwin12.2.0 on i386 (Source distribution)
40
41
42Test 5:  ERROR
43--------
44
45MySQL server log contains errors.
46Details: The MySQL server error log file &apos;<a href='/Users/rparchet/.local/share/akonadi/db_data/mysql.err'>/Users/rparchet/.local/share/akonadi/db_data/mysql.err</a>&apos; contains errors.
47
48File content of '/Users/rparchet/.local/share/akonadi/db_data/mysql.err':
49120713 18:56:48 [ERROR] mysqld: Can't lock aria control file '/Users/rparchet/.local/share/akonadi/db_data/aria_log_control' for exclusive use, error: 35. Will retry for 30 seconds
50120713 18:56:49 [Note] PrimeBase XT (PBXT) Engine 1.0.11-7 Pre-GA loaded...
51120713 18:56:49 [Note] Paul McCullagh, PrimeBase Technologies GmbH, http://www.primebase.org
52InnoDB: The InnoDB memory heap is disabled
53InnoDB: Mutexes and rw_locks use GCC atomic builtins
54InnoDB: Compressed tables use zlib 1.2.3
55120713 18:56:49  InnoDB: Initializing buffer pool, size = 80.0M
56120713 18:56:49  InnoDB: Completed initialization of buffer pool
57120713 18:56:49  InnoDB: highest supported file format is Barracuda.
58InnoDB: No valid checkpoint found.
59InnoDB: If this error appears when you are creating an InnoDB database,
60InnoDB: the problem may be that during an earlier attempt you managed
61InnoDB: to create the InnoDB data files, but log file creation failed.
62InnoDB: If that is the case, please refer to
63InnoDB: http://dev.mysql.com/doc/refman/5.1/en/error-creating-innodb.html
64120713 18:56:49 [ERROR] Plugin 'InnoDB' init function returned error.
65120713 18:56:49 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
66120713 18:56:49 [ERROR] Failed to initialize plugins.
67120713 18:56:49 [ERROR] Aborting
68
69120713 18:56:49 [Note] PrimeBase XT Engine shutdown...
70120713 18:56:49 [Note] /opt/local/libexec/mysqld: Shutdown complete
71
72
73
74Test 6:  SUCCESS
75--------
76
77MySQL server default configuration found.
78Details: The default configuration for the MySQL server was found and is readable at <a href='/opt/local/share/config/akonadi/mysql-global.conf'>/opt/local/share/config/akonadi/mysql-global.conf</a>.
79
80File content of '/opt/local/share/config/akonadi/mysql-global.conf':
81#
82# Global Akonadi MySQL server settings,
83# These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
84#
85# Based on advice by Kris Köhntopp <kris@mysql.com>
86#
87[mysqld]
88
89# strict query parsing/interpretation
90# TODO: make Akonadi work with those settings enabled
91# 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
92# sql_mode=strict_trans_tables
93
94# DEBUGGING:
95# log all queries, useful for debugging but generates an enormous amount of data
96# log=mysql.full
97# log queries slower than n seconds, log file name relative to datadir (for debugging only)
98# log_slow_queries=mysql.slow
99# long_query_time=1
100# log queries not using indices, debug only, disable for production use
101# log_queries_not_using_indexes=1
102#
103# mesure database size and adjust innodb_buffer_pool_size
104# SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
105
106# NOTES:
107# Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
108
109#expire_logs_days=3
110
111#sync_bin_log=0
112
113# Use UTF-8 encoding for tables
114character_set_server=utf8
115collation_server=utf8_general_ci
116
117# use InnoDB for transactions and better crash recovery
118default_storage_engine=innodb
119
120# memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
121innodb_additional_mem_pool_size=1M
122
123# memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
124# Larger values means less I/O
125innodb_buffer_pool_size=80M
126
127# Create a .ibd file for each table (default:0)
128innodb_file_per_table=1
129
130# Write out the log buffer to the log file at each commit (default:1)
131innodb_flush_log_at_trx_commit=2
132
133# Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
134# larger values means less I/O
135innodb_log_buffer_size=1M
136
137# Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
138innodb_log_file_size=64M
139
140# # error log file name, relative to datadir (default:hostname.err)
141log_error=mysql.err
142
143# print warnings and connection errors (default:1)
144log_warnings=2
145
146# Convert table named to lowercase
147lower_case_table_names=1
148
149# Maximum size of one packet or any generated/intermediate string. (default:1M)
150max_allowed_packet=32M
151
152# Maximum simultaneous connections allowed (default:100)
153max_connections=256
154
155# The two options below make no sense with prepared statements and/or transactions
156# (make sense when having the same query multiple times)
157
158# Memory allocated for caching query results (default:0 (disabled))
159query_cache_size=0
160
161# Do not cache results (default:1)
162query_cache_type=0
163
164# Do not use the privileges mechanisms
165skip_grant_tables
166
167# Do not listen for TCP/IP connections at all
168skip_networking
169
170# The number of open tables for all threads. (default:64)
171table_cache=200
172
173# How many threads the server should cache for reuse (default:0)
174thread_cache_size=3
175
176# wait 365d before dropping the DB connection (default:8h)
177wait_timeout=31536000
178
179[client]
180default-character-set=utf8
181
182
183Test 7:  SKIP
184--------
185
186MySQL server custom configuration not available.
187Details: The custom configuration for the MySQL server was not found but is optional.
188
189Test 8:  SUCCESS
190--------
191
192MySQL server configuration is usable.
193Details: The MySQL server configuration was found at <a href='/Users/rparchet/.local/share/akonadi/mysql.conf'>/Users/rparchet/.local/share/akonadi/mysql.conf</a> and is readable.
194
195File content of '/Users/rparchet/.local/share/akonadi/mysql.conf':
196#
197# Global Akonadi MySQL server settings,
198# These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
199#
200# Based on advice by Kris Köhntopp <kris@mysql.com>
201#
202[mysqld]
203
204# strict query parsing/interpretation
205# TODO: make Akonadi work with those settings enabled
206# 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
207# sql_mode=strict_trans_tables
208
209# DEBUGGING:
210# log all queries, useful for debugging but generates an enormous amount of data
211# log=mysql.full
212# log queries slower than n seconds, log file name relative to datadir (for debugging only)
213# log_slow_queries=mysql.slow
214# long_query_time=1
215# log queries not using indices, debug only, disable for production use
216# log_queries_not_using_indexes=1
217#
218# mesure database size and adjust innodb_buffer_pool_size
219# SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
220
221# NOTES:
222# Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
223
224#expire_logs_days=3
225
226#sync_bin_log=0
227
228# Use UTF-8 encoding for tables
229character_set_server=utf8
230collation_server=utf8_general_ci
231
232# use InnoDB for transactions and better crash recovery
233default_storage_engine=innodb
234
235# memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
236innodb_additional_mem_pool_size=1M
237
238# memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
239# Larger values means less I/O
240innodb_buffer_pool_size=80M
241
242# Create a .ibd file for each table (default:0)
243innodb_file_per_table=1
244
245# Write out the log buffer to the log file at each commit (default:1)
246innodb_flush_log_at_trx_commit=2
247
248# Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
249# larger values means less I/O
250innodb_log_buffer_size=1M
251
252# Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
253innodb_log_file_size=64M
254
255# # error log file name, relative to datadir (default:hostname.err)
256log_error=mysql.err
257
258# print warnings and connection errors (default:1)
259log_warnings=2
260
261# Convert table named to lowercase
262lower_case_table_names=1
263
264# Maximum size of one packet or any generated/intermediate string. (default:1M)
265max_allowed_packet=32M
266
267# Maximum simultaneous connections allowed (default:100)
268max_connections=256
269
270# The two options below make no sense with prepared statements and/or transactions
271# (make sense when having the same query multiple times)
272
273# Memory allocated for caching query results (default:0 (disabled))
274query_cache_size=0
275
276# Do not cache results (default:1)
277query_cache_type=0
278
279# Do not use the privileges mechanisms
280skip_grant_tables
281
282# Do not listen for TCP/IP connections at all
283skip_networking
284
285# The number of open tables for all threads. (default:64)
286table_cache=200
287
288# How many threads the server should cache for reuse (default:0)
289thread_cache_size=3
290
291# wait 365d before dropping the DB connection (default:8h)
292wait_timeout=31536000
293
294[client]
295default-character-set=utf8
296
297
298Test 9:  SUCCESS
299--------
300
301akonadictl found and usable
302Details: The program '/opt/local/bin/akonadictl' to control the Akonadi server was found and could be executed successfully.
303Result:
304Akonadi 1.7.2
305
306
307Test 10:  ERROR
308--------
309
310Akonadi control process not registered at D-Bus.
311Details: The Akonadi control process is not registered at D-Bus which typically means it was not started or encountered a fatal error during startup.
312
313Test 11:  ERROR
314--------
315
316Akonadi server process not registered at D-Bus.
317Details: The Akonadi server process is not registered at D-Bus which typically means it was not started or encountered a fatal error during startup.
318
319Test 12:  ERROR
320--------
321
322Nepomuk search service not registered at D-Bus.
323Details: The Nepomuk search service is not registered at D-Bus which typically means it was not started or encountered a fatal error during startup.
324
325Test 13:  SKIP
326--------
327
328Protocol version check not possible.
329Details: Without a connection to the server it is not possible to check if the protocol version meets the requirements.
330
331Test 14:  ERROR
332--------
333
334No resource agents found.
335Details: 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: '/opt/local/share/akonadi/agents'. The XDG_DATA_DIRS environment variable is set to ''; make sure this includes all paths where Akonadi agents are installed.
336
337Directory listing of '/opt/local/share/akonadi/agents':
338akonadinepomukfeederagent.desktop
339akonotesresource.desktop
340birthdaysresource.desktop
341calendarsearchagent.desktop
342contactsresource.desktop
343davgroupwareresource.desktop
344icalresource.desktop
345imapresource.desktop
346invitationsagent.desktop
347kabcresource.desktop
348kalarmdirresource.desktop
349kalarmresource.desktop
350kcalresource.desktop
351kdeaccountsresource.desktop
352knutresource.desktop
353kolabproxyresource.desktop
354localbookmarksresource.desktop
355maildirresource.desktop
356maildispatcheragent.desktop
357mailfilteragent.desktop
358mboxresource.desktop
359microblog.desktop
360mixedmaildirresource.desktop
361mtdummyresource.desktop
362nepomuktagresource.desktop
363nntpresource.desktop
364notesresource.desktop
365openxchangeresource.desktop
366pop3resource.desktop
367vcarddirresource.desktop
368vcardresource.desktop
369
370Environment variable XDG_DATA_DIRS is set to ''
371
372Test 15:  ERROR
373--------
374
375Current Akonadi server error log found.
376Details: The Akonadi server reported errors during its current startup. The log can be found in <a href='/Users/rparchet/.local/share/akonadi/akonadiserver.error'>/Users/rparchet/.local/share/akonadi/akonadiserver.error</a>.
377
378File content of '/Users/rparchet/.local/share/akonadi/akonadiserver.error':
379Invalid database object during database server startup
380"[
3810: 0   akonadiserver                       0x00000001097dc07b _Z11akBacktracev + 75
3821: 1   akonadiserver                       0x00000001097dc3c6 _ZL19defaultCrashHandleri + 86
3832: 2   libsystem_c.dylib                   0x00007fff948dfcfa _sigtramp + 26
3843: 3   ???                                 0x00007fff693d1908 0x0 + 140734958999816
3854: 4   libsystem_c.dylib                   0x00007fff9487ea7a abort + 143
3865: 5   libQtCore.4.dylib                   0x00000001099a6e25 _Z17qt_message_output9QtMsgTypePKc + 149
3876: 6   akonadiserver                       0x00000001097ddd8f _ZN15FileDebugStream9writeDataEPKcx + 159
3887: 7   libQtCore.4.dylib                   0x0000000109a3ad85 _ZN9QIODevice5writeEPKcx + 207
3898: 8   libQtCore.4.dylib                   0x0000000109a43e3f _ZN18QTextStreamPrivate16flushWriteBufferEv + 201
3909: 9   libQtCore.4.dylib                   0x0000000109a44cef _ZN11QTextStreamD2Ev + 51
39110: 10  akonadiserver                       0x00000001097d7b47 _ZN6QDebugD2Ev + 247
39211: 11  akonadiserver                       0x0000000109852625 _ZN13DbConfigMysql19startInternalServerEv + 6357
39312: 12  akonadiserver                       0x00000001097e0084 _ZN7Akonadi13AkonadiServer20startDatabaseProcessEv + 228
39413: 13  akonadiserver                       0x00000001097df055 _ZN7Akonadi13AkonadiServerC2EP7QObject + 181
39514: 14  akonadiserver                       0x00000001097e138a _ZN7Akonadi13AkonadiServer8instanceEv + 42
39615: 15  akonadiserver                       0x00000001097d6e26 main + 614
39716: 16  akonadiserver                       0x00000001097d6b84 start + 52
39817: 17  ???                                 0x0000000000000001 0x0 + 1
399]
400"
401
402
403Test 16:  ERROR
404--------
405
406Previous Akonadi server error log found.
407Details: The Akonadi server reported errors during its previous startup. The log can be found in <a href='/Users/rparchet/.local/share/akonadi/akonadiserver.error.old'>/Users/rparchet/.local/share/akonadi/akonadiserver.error.old</a>.
408
409File content of '/Users/rparchet/.local/share/akonadi/akonadiserver.error.old':
410Invalid database object during database server startup
411"[
4120: 0   akonadiserver                       0x000000010d9a507b _Z11akBacktracev + 75
4131: 1   akonadiserver                       0x000000010d9a53c6 _ZL19defaultCrashHandleri + 86
4142: 2   libsystem_c.dylib                   0x00007fff948dfcfa _sigtramp + 26
4153: 3   ???                                 0x00007fff6d59a908 0x0 + 140735027980552
4164: 4   libsystem_c.dylib                   0x00007fff9487ea7a abort + 143
4175: 5   libQtCore.4.dylib                   0x000000010db70e25 _Z17qt_message_output9QtMsgTypePKc + 149
4186: 6   akonadiserver                       0x000000010d9a6d8f _ZN15FileDebugStream9writeDataEPKcx + 159
4197: 7   libQtCore.4.dylib                   0x000000010dc04d85 _ZN9QIODevice5writeEPKcx + 207
4208: 8   libQtCore.4.dylib                   0x000000010dc0de3f _ZN18QTextStreamPrivate16flushWriteBufferEv + 201
4219: 9   libQtCore.4.dylib                   0x000000010dc0ecef _ZN11QTextStreamD2Ev + 51
42210: 10  akonadiserver                       0x000000010d9a0b47 _ZN6QDebugD2Ev + 247
42311: 11  akonadiserver                       0x000000010da1b625 _ZN13DbConfigMysql19startInternalServerEv + 6357
42412: 12  akonadiserver                       0x000000010d9a9084 _ZN7Akonadi13AkonadiServer20startDatabaseProcessEv + 228
42513: 13  akonadiserver                       0x000000010d9a8055 _ZN7Akonadi13AkonadiServerC2EP7QObject + 181
42614: 14  akonadiserver                       0x000000010d9aa38a _ZN7Akonadi13AkonadiServer8instanceEv + 42
42715: 15  akonadiserver                       0x000000010d99fe26 main + 614
42816: 16  akonadiserver                       0x000000010d99fb84 start + 52
42917: 17  ???                                 0x0000000000000001 0x0 + 1
430]
431"
432
433
434Test 17:  SUCCESS
435--------
436
437No current Akonadi control error log found.
438Details: The Akonadi control process did not report any errors during its current startup.
439
440Test 18:  SUCCESS
441--------
442
443No previous Akonadi control error log found.
444Details: The Akonadi control process did not report any errors during its previous startup.
445