Advertisement
papapenguin

Untitled

Apr 26th, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.79 KB | None | 0 0
  1. Akonadi Server Self-Test Report
  2. ===============================
  3.  
  4. Test 1: SUCCESS
  5. --------
  6.  
  7. Database driver found.
  8. Details: The QtSQL driver 'QMYSQL' is required by your current Akonadi server configuration and was found on your system.
  9.  
  10. File content of '/home/donald/.config/akonadi/akonadiserverrc':
  11. [%General]
  12. Driver=QMYSQL
  13.  
  14. [QMYSQL]
  15. Name=akonadi
  16. Host=
  17. Options="UNIX_SOCKET=/tmp/akonadi-donald.KHDdun/mysql.socket"
  18. ServerPath=/usr/sbin/mysqld
  19. StartServer=true
  20.  
  21. [Debug]
  22. Tracer=null
  23.  
  24.  
  25. Test 2: SUCCESS
  26. --------
  27.  
  28. Akonadi is not running as root
  29. Details: Akonadi is not running as a root/administrator user, which is the recommended setup for a secure system.
  30.  
  31. Test 3: SUCCESS
  32. --------
  33.  
  34. MySQL server found.
  35. Details: You have currently configured Akonadi to use the MySQL server '/usr/sbin/mysqld'.
  36. 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.
  37.  
  38. Test 4: SUCCESS
  39. --------
  40.  
  41. MySQL server is executable.
  42. Details: MySQL server found: 140426 8:18:38 [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.
  43. /usr/sbin/mysqld Ver 5.5.35-1ubuntu1 for debian-linux-gnu on x86_64 ((Ubuntu))
  44.  
  45.  
  46. Test 5: SUCCESS
  47. --------
  48.  
  49. No current MySQL error log found.
  50. Details: The MySQL server did not report any errors during this startup. The log can be found in '/home/donald/.local/share/akonadi/db_data/mysql.err'.
  51.  
  52. Test 6: SUCCESS
  53. --------
  54.  
  55. MySQL server default configuration found.
  56. 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>.
  57.  
  58. File content of '/etc/akonadi/mysql-global.conf':
  59. #
  60. # Global Akonadi MySQL server settings,
  61. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  62. #
  63. # Based on advice by Kris Köhntopp <kris@mysql.com>
  64. #
  65. [mysqld]
  66.  
  67. # strict query parsing/interpretation
  68. # TODO: make Akonadi work with those settings enabled
  69. # 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
  70. # sql_mode=strict_trans_tables
  71.  
  72. # DEBUGGING:
  73. # log all queries, useful for debugging but generates an enormous amount of data
  74. # log=mysql.full
  75. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  76. # log_slow_queries=mysql.slow
  77. # long_query_time=1
  78. # log queries not using indices, debug only, disable for production use
  79. # log_queries_not_using_indexes=1
  80. #
  81. # mesure database size and adjust innodb_buffer_pool_size
  82. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  83.  
  84. # NOTES:
  85. # Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
  86.  
  87. #expire_logs_days=3
  88.  
  89. #sync_bin_log=0
  90.  
  91. # Use UTF-8 encoding for tables
  92. character_set_server=utf8
  93. collation_server=utf8_general_ci
  94.  
  95. # use InnoDB for transactions and better crash recovery
  96. default_storage_engine=innodb
  97.  
  98. # memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
  99. # Deprecated in MySQL >= 5.6.3
  100. innodb_additional_mem_pool_size=1M
  101.  
  102. # memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
  103. # Larger values means less I/O
  104. innodb_buffer_pool_size=80M
  105.  
  106. # Create a .ibd file for each table (default:0)
  107. innodb_file_per_table=1
  108.  
  109. # Write out the log buffer to the log file at each commit (default:1)
  110. innodb_flush_log_at_trx_commit=2
  111.  
  112. # Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
  113. # larger values means less I/O
  114. innodb_log_buffer_size=1M
  115.  
  116. # Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
  117. innodb_log_file_size=64M
  118.  
  119. # # error log file name, relative to datadir (default:hostname.err)
  120. log_error=mysql.err
  121.  
  122. # print warnings and connection errors (default:1)
  123. log_warnings=2
  124.  
  125. # Convert table named to lowercase
  126. lower_case_table_names=1
  127.  
  128. # Maximum size of one packet or any generated/intermediate string. (default:1M)
  129. max_allowed_packet=32M
  130.  
  131. # Maximum simultaneous connections allowed (default:100)
  132. max_connections=256
  133.  
  134. # The two options below make no sense with prepared statements and/or transactions
  135. # (make sense when having the same query multiple times)
  136.  
  137. # Memory allocated for caching query results (default:0 (disabled))
  138. query_cache_size=0
  139.  
  140. # Do not cache results (default:1)
  141. query_cache_type=0
  142.  
  143. # Do not use the privileges mechanisms
  144. skip_grant_tables
  145.  
  146. # Do not listen for TCP/IP connections at all
  147. skip_networking
  148.  
  149. # The number of open tables for all threads. (default:64)
  150. table_open_cache=200
  151.  
  152. # How many threads the server should cache for reuse (default:0)
  153. thread_cache_size=3
  154.  
  155. # wait 365d before dropping the DB connection (default:8h)
  156. wait_timeout=31536000
  157.  
  158. # We use InnoDB, so don't let MyISAM eat up memory
  159. key_buffer_size=16K
  160.  
  161. [client]
  162. default-character-set=utf8
  163.  
  164.  
  165. Test 7: SKIP
  166. --------
  167.  
  168. MySQL server custom configuration not available.
  169. Details: The custom configuration for the MySQL server was not found but is optional.
  170.  
  171. Test 8: SUCCESS
  172. --------
  173.  
  174. MySQL server configuration is usable.
  175. Details: The MySQL server configuration was found at <a href='/home/donald/.local/share/akonadi/mysql.conf'>/home/donald/.local/share/akonadi/mysql.conf</a> and is readable.
  176.  
  177. File content of '/home/donald/.local/share/akonadi/mysql.conf':
  178. #
  179. # Global Akonadi MySQL server settings,
  180. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  181. #
  182. # Based on advice by Kris Köhntopp <kris@mysql.com>
  183. #
  184. [mysqld]
  185.  
  186. # strict query parsing/interpretation
  187. # TODO: make Akonadi work with those settings enabled
  188. # 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
  189. # sql_mode=strict_trans_tables
  190.  
  191. # DEBUGGING:
  192. # log all queries, useful for debugging but generates an enormous amount of data
  193. # log=mysql.full
  194. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  195. # log_slow_queries=mysql.slow
  196. # long_query_time=1
  197. # log queries not using indices, debug only, disable for production use
  198. # log_queries_not_using_indexes=1
  199. #
  200. # mesure database size and adjust innodb_buffer_pool_size
  201. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  202.  
  203. # NOTES:
  204. # Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
  205.  
  206. #expire_logs_days=3
  207.  
  208. #sync_bin_log=0
  209.  
  210. # Use UTF-8 encoding for tables
  211. character_set_server=utf8
  212. collation_server=utf8_general_ci
  213.  
  214. # use InnoDB for transactions and better crash recovery
  215. default_storage_engine=innodb
  216.  
  217. # memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
  218. # Deprecated in MySQL >= 5.6.3
  219. innodb_additional_mem_pool_size=1M
  220.  
  221. # memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
  222. # Larger values means less I/O
  223. innodb_buffer_pool_size=80M
  224.  
  225. # Create a .ibd file for each table (default:0)
  226. innodb_file_per_table=1
  227.  
  228. # Write out the log buffer to the log file at each commit (default:1)
  229. innodb_flush_log_at_trx_commit=2
  230.  
  231. # Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
  232. # larger values means less I/O
  233. innodb_log_buffer_size=1M
  234.  
  235. # Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
  236. innodb_log_file_size=64M
  237.  
  238. # # error log file name, relative to datadir (default:hostname.err)
  239. log_error=mysql.err
  240.  
  241. # print warnings and connection errors (default:1)
  242. log_warnings=2
  243.  
  244. # Convert table named to lowercase
  245. lower_case_table_names=1
  246.  
  247. # Maximum size of one packet or any generated/intermediate string. (default:1M)
  248. max_allowed_packet=32M
  249.  
  250. # Maximum simultaneous connections allowed (default:100)
  251. max_connections=256
  252.  
  253. # The two options below make no sense with prepared statements and/or transactions
  254. # (make sense when having the same query multiple times)
  255.  
  256. # Memory allocated for caching query results (default:0 (disabled))
  257. query_cache_size=0
  258.  
  259. # Do not cache results (default:1)
  260. query_cache_type=0
  261.  
  262. # Do not use the privileges mechanisms
  263. skip_grant_tables
  264.  
  265. # Do not listen for TCP/IP connections at all
  266. skip_networking
  267.  
  268. # The number of open tables for all threads. (default:64)
  269. table_open_cache=200
  270.  
  271. # How many threads the server should cache for reuse (default:0)
  272. thread_cache_size=3
  273.  
  274. # wait 365d before dropping the DB connection (default:8h)
  275. wait_timeout=31536000
  276.  
  277. # We use InnoDB, so don't let MyISAM eat up memory
  278. key_buffer_size=16K
  279.  
  280. [client]
  281. default-character-set=utf8
  282.  
  283.  
  284. Test 9: SUCCESS
  285. --------
  286.  
  287. akonadictl found and usable
  288. Details: The program '/usr/bin/akonadictl' to control the Akonadi server was found and could be executed successfully.
  289. Result:
  290. Akonadi 1.12.1
  291.  
  292.  
  293. Test 10: ERROR
  294. --------
  295.  
  296. Akonadi control process not registered at D-Bus.
  297. 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.
  298.  
  299. Test 11: ERROR
  300. --------
  301.  
  302. Akonadi server process not registered at D-Bus.
  303. 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.
  304.  
  305. Test 12: SKIP
  306. --------
  307.  
  308. Protocol version check not possible.
  309. Details: Without a connection to the server it is not possible to check if the protocol version meets the requirements.
  310.  
  311. Test 13: ERROR
  312. --------
  313.  
  314. No resource agents found.
  315. 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/kde-plasma:/usr/local/share/:/usr/share/'; make sure this includes all paths where Akonadi agents are installed.
  316.  
  317. Directory listing of '/usr/share/akonadi/agents':
  318. akonadibalooindexingagent.desktop
  319. akonadinepomukfeederagent.desktop
  320. akonotesresource.desktop
  321. archivemailagent.desktop
  322. birthdaysresource.desktop
  323. contactsresource.desktop
  324. davgroupwareresource.desktop
  325. facebookresource.desktop
  326. folderarchiveagent.desktop
  327. googlecalendarresource.desktop
  328. googlecontactsresource.desktop
  329. icaldirresource.desktop
  330. icalresource.desktop
  331. imapresource.desktop
  332. invitationsagent.desktop
  333. kabcresource.desktop
  334. kalarmdirresource.desktop
  335. kalarmresource.desktop
  336. kcalresource.desktop
  337. kdeaccountsresource.desktop
  338. kolabproxyresource.desktop
  339. localbookmarksresource.desktop
  340. maildirresource.desktop
  341. maildispatcheragent.desktop
  342. mailfilteragent.desktop
  343. mboxresource.desktop
  344. migrationagent.desktop
  345. mixedmaildirresource.desktop
  346. mtdummyresource.desktop
  347. newmailnotifieragent.desktop
  348. nntpresource.desktop
  349. notesagent.desktop
  350. notesresource.desktop
  351. openxchangeresource.desktop
  352. pop3resource.desktop
  353. sendlateragent.desktop
  354. vcarddirresource.desktop
  355. vcardresource.desktop
  356.  
  357. Environment variable XDG_DATA_DIRS is set to '/usr/share:/usr/share/kde-plasma:/usr/local/share/:/usr/share/'
  358.  
  359. Test 14: ERROR
  360. --------
  361.  
  362. Current Akonadi server error log found.
  363. Details: The Akonadi server reported errors during its current startup. The log can be found in <a href='/home/donald/.local/share/akonadi/akonadiserver.error'>/home/donald/.local/share/akonadi/akonadiserver.error</a>.
  364.  
  365. File content of '/home/donald/.local/share/akonadi/akonadiserver.error':
  366. Database process exited unexpectedly during initial connection!
  367. executable: "/usr/sbin/mysqld"
  368. arguments: ("--defaults-file=/home/donald/.local/share/akonadi/mysql.conf", "--datadir=/home/donald/.local/share/akonadi/db_data/", "--socket=/tmp/akonadi-donald.KHDdun/mysql.socket")
  369. stdout: ""
  370. stderr: "Could not open required defaults file: /home/donald/.local/share/akonadi/mysql.conf
  371. Fatal error in defaults handling. Program aborted
  372. "
  373. exit code: 1
  374. process error: "Unknown error"
  375. "[
  376. 0: akonadiserver() [0x419cb7]
  377. 1: akonadiserver() [0x419f12]
  378. 2: /lib/x86_64-linux-gnu/libc.so.6(+0x36ff0) [0x7f7c5509fff0]
  379. 3: /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x39) [0x7f7c5509ff79]
  380. 4: /lib/x86_64-linux-gnu/libc.so.6(abort+0x148) [0x7f7c550a3388]
  381. 5: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x102) [0x7f7c56b87c92]
  382. 6: akonadiserver() [0x41bdbd]
  383. 7: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0xb0) [0x7f7c56c22470]
  384. 8: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x11ab3d) [0x7f7c56c31b3d]
  385. 9: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x31) [0x7f7c56c3a721]
  386. 10: akonadiserver() [0x4b38b4]
  387. 11: akonadiserver() [0x41c957]
  388. 12: akonadiserver() [0x41f1e5]
  389. 13: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN7QObject5eventEP6QEvent+0x24e) [0x7f7c56cacc1e]
  390. 14: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN16QCoreApplication14notifyInternalEP7QObjectP6QEvent+0x6d) [0x7f7c56c944dd]
  391. 15: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN23QCoreApplicationPrivate16sendPostedEventsEP7QObjectiP11QThreadData+0x1ed) [0x7f7c56c97b3d]
  392. 16: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x1aaf83) [0x7f7c56cc1f83]
  393. 17: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_dispatch+0x254) [0x7f7c5476ee04]
  394. 18: /lib/x86_64-linux-gnu/libglib-2.0.so.0(+0x49048) [0x7f7c5476f048]
  395. 19: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_iteration+0x2c) [0x7f7c5476f0ec]
  396. 20: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE+0x71) [0x7f7c56cc17a1]
  397. 21: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN10QEventLoop13processEventsE6QFlagsINS_17ProcessEventsFlagEE+0x2f) [0x7f7c56c930af]
  398. 22: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE+0x175) [0x7f7c56c933a5]
  399. 23: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN16QCoreApplication4execEv+0x89) [0x7f7c56c98b79]
  400. 24: akonadiserver() [0x4142e7]
  401. 25: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5) [0x7f7c5508aec5]
  402. 26: akonadiserver() [0x414c48]
  403. ]
  404. "
  405.  
  406.  
  407. Test 15: ERROR
  408. --------
  409.  
  410. Previous Akonadi server error log found.
  411. Details: The Akonadi server reported errors during its previous startup. The log can be found in <a href='/home/donald/.local/share/akonadi/akonadiserver.error.old'>/home/donald/.local/share/akonadi/akonadiserver.error.old</a>.
  412.  
  413. File content of '/home/donald/.local/share/akonadi/akonadiserver.error.old':
  414. Database process exited unexpectedly during initial connection!
  415. executable: "/usr/sbin/mysqld"
  416. arguments: ("--defaults-file=/home/donald/.local/share/akonadi/mysql.conf", "--datadir=/home/donald/.local/share/akonadi/db_data/", "--socket=/tmp/akonadi-donald.KHDdun/mysql.socket")
  417. stdout: ""
  418. stderr: "Could not open required defaults file: /home/donald/.local/share/akonadi/mysql.conf
  419. Fatal error in defaults handling. Program aborted
  420. "
  421. exit code: 1
  422. process error: "Unknown error"
  423. "[
  424. 0: akonadiserver() [0x419cb7]
  425. 1: akonadiserver() [0x419f12]
  426. 2: /lib/x86_64-linux-gnu/libc.so.6(+0x36ff0) [0x7f38e1770ff0]
  427. 3: /lib/x86_64-linux-gnu/libc.so.6(gsignal+0x39) [0x7f38e1770f79]
  428. 4: /lib/x86_64-linux-gnu/libc.so.6(abort+0x148) [0x7f38e1774388]
  429. 5: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x102) [0x7f38e3258c92]
  430. 6: akonadiserver() [0x41bdbd]
  431. 7: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0xb0) [0x7f38e32f3470]
  432. 8: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x11ab3d) [0x7f38e3302b3d]
  433. 9: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x31) [0x7f38e330b721]
  434. 10: akonadiserver() [0x4b38b4]
  435. 11: akonadiserver() [0x41c957]
  436. 12: akonadiserver() [0x41f1e5]
  437. 13: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN7QObject5eventEP6QEvent+0x24e) [0x7f38e337dc1e]
  438. 14: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN16QCoreApplication14notifyInternalEP7QObjectP6QEvent+0x6d) [0x7f38e33654dd]
  439. 15: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN23QCoreApplicationPrivate16sendPostedEventsEP7QObjectiP11QThreadData+0x1ed) [0x7f38e3368b3d]
  440. 16: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(+0x1aaf83) [0x7f38e3392f83]
  441. 17: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_dispatch+0x254) [0x7f38e0e3fe04]
  442. 18: /lib/x86_64-linux-gnu/libglib-2.0.so.0(+0x49048) [0x7f38e0e40048]
  443. 19: /lib/x86_64-linux-gnu/libglib-2.0.so.0(g_main_context_iteration+0x2c) [0x7f38e0e400ec]
  444. 20: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE+0x71) [0x7f38e33927a1]
  445. 21: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN10QEventLoop13processEventsE6QFlagsINS_17ProcessEventsFlagEE+0x2f) [0x7f38e33640af]
  446. 22: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE+0x175) [0x7f38e33643a5]
  447. 23: /usr/lib/x86_64-linux-gnu/libQtCore.so.4(_ZN16QCoreApplication4execEv+0x89) [0x7f38e3369b79]
  448. 24: akonadiserver() [0x4142e7]
  449. 25: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf5) [0x7f38e175bec5]
  450. 26: akonadiserver() [0x414c48]
  451. ]
  452. "
  453.  
  454.  
  455. Test 16: SUCCESS
  456. --------
  457.  
  458. No current Akonadi control error log found.
  459. Details: The Akonadi control process did not report any errors during its current startup.
  460.  
  461. Test 17: SUCCESS
  462. --------
  463.  
  464. No previous Akonadi control error log found.
  465. Details: The Akonadi control process did not report any errors during its previous startup.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement