Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
571
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.84 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/kwtm1/.config/akonadi/akonadiserverrc':
  11. [%General]
  12. Driver=QMYSQL
  13. SizeThreshold=4096
  14. ExternalPayload=false
  15.  
  16. [QMYSQL]
  17. Name=akonadi
  18. Host=
  19. User=
  20. Password=
  21. Options="UNIX_SOCKET=/home/kwtm1/.local/share/akonadi/db_misc/mysql.socket"
  22. ServerPath=/usr/sbin/mysqld-akonadi
  23. StartServer=true
  24.  
  25. [Debug]
  26. Tracer=null
  27.  
  28.  
  29. Test 2: SUCCESS
  30. --------
  31.  
  32. MySQL server found.
  33. Details: You currently have configured Akonadi to use the MySQL server '/usr/sbin/mysqld-akonadi'.
  34. 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 locations varies depending on the distribution.
  35.  
  36. Test 3: SUCCESS
  37. --------
  38.  
  39. MySQL server is executable.
  40. Details: MySQL server found: /usr/sbin/mysqld-akonadi Ver 5.1.41-3ubuntu10 for debian-linux-gnu on i486 ((Ubuntu))
  41.  
  42.  
  43. Test 4: SUCCESS
  44. --------
  45.  
  46. No current MySQL error log found.
  47. Details: The MySQL server did not report any errors during this startup into '/home/kwtm1/.local/share/akonadi/db_data/mysql.err'.
  48.  
  49. Test 5: SUCCESS
  50. --------
  51.  
  52. MySQL server default configuration found.
  53. 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>.
  54.  
  55. File content of '/etc/akonadi/mysql-global.conf':
  56. #
  57. # Global Akonadi MySQL server settings,
  58. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  59. #
  60. # Based on advice by Kris Köhntopp <kris@mysql.com>
  61. #
  62. [mysqld]
  63. skip_grant_tables
  64. skip_networking
  65.  
  66. # strict query parsing/interpretation
  67. # TODO: make Akonadi work with those settings enabled
  68. #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
  69. #sql_mode=strict_trans_tables
  70.  
  71. # use InnoDB for transactions and better crash recovery
  72. default_storage_engine=innodb
  73. # case-insensitive table names, avoids trouble on windows
  74. lower_case_table_names=1
  75. character_set_server=latin1
  76. collation_server=latin1_general_ci
  77. table_cache=200
  78. thread_cache_size=3
  79. log_bin=mysql-bin
  80. expire_logs_days=3
  81. #sync_bin_log=0
  82. # error log file name, relative to datadir
  83. log_error=mysql.err
  84. log_warnings=2
  85. # log all queries, useful for debugging but generates an enormous amount of data
  86. #log=mysql.full
  87. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  88. #log_slow_queries=mysql.slow
  89. #long_query_time=1
  90. # log queries not using indices, debug only, disable for production use
  91. #log_queries_not_using_indexes=1
  92. # maximum blob size
  93. max_allowed_packet=32M
  94. max_connections=256
  95. # makes sense when having the same query multiple times
  96. # makes no sense with prepared statements and/or transactions
  97. query_cache_type=0
  98. query_cache_size=0
  99.  
  100. innodb_file_per_table=1
  101. innodb_log_buffer_size=1M
  102. innodb_additional_mem_pool_size=1M
  103. # messure database size and adjust
  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. innodb_buffer_pool_size=80M
  106. # size of average write burst, keep Innob_log_waits small, keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
  107. innodb_log_file_size=64M
  108. innodb_flush_log_at_trx_commit=2
  109.  
  110.  
  111.  
  112. Test 6: SKIP
  113. --------
  114.  
  115. MySQL server custom configuration not available.
  116. Details: The custom configuration for the MySQL server was not found but is optional.
  117.  
  118. Test 7: SUCCESS
  119. --------
  120.  
  121. MySQL server configuration is usable.
  122. Details: The MySQL server configuration was found at <a href='/home/kwtm1/.local/share/akonadi/mysql.conf'>/home/kwtm1/.local/share/akonadi/mysql.conf</a> and is readable.
  123.  
  124. File content of '/home/kwtm1/.local/share/akonadi/mysql.conf':
  125. #
  126. # Global Akonadi MySQL server settings,
  127. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  128. #
  129. # Based on advice by Kris Köhntopp <kris@mysql.com>
  130. #
  131. [mysqld]
  132. skip_grant_tables
  133. skip_networking
  134.  
  135. # strict query parsing/interpretation
  136. # TODO: make Akonadi work with those settings enabled
  137. #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
  138. #sql_mode=strict_trans_tables
  139.  
  140. # use InnoDB for transactions and better crash recovery
  141. default_storage_engine=innodb
  142. # case-insensitive table names, avoids trouble on windows
  143. lower_case_table_names=1
  144. character_set_server=latin1
  145. collation_server=latin1_general_ci
  146. table_cache=200
  147. thread_cache_size=3
  148. log_bin=mysql-bin
  149. expire_logs_days=3
  150. #sync_bin_log=0
  151. # error log file name, relative to datadir
  152. log_error=mysql.err
  153. log_warnings=2
  154. # log all queries, useful for debugging but generates an enormous amount of data
  155. #log=mysql.full
  156. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  157. #log_slow_queries=mysql.slow
  158. #long_query_time=1
  159. # log queries not using indices, debug only, disable for production use
  160. #log_queries_not_using_indexes=1
  161. # maximum blob size
  162. max_allowed_packet=32M
  163. max_connections=256
  164. # makes sense when having the same query multiple times
  165. # makes no sense with prepared statements and/or transactions
  166. query_cache_type=0
  167. query_cache_size=0
  168.  
  169. innodb_file_per_table=1
  170. innodb_log_buffer_size=1M
  171. innodb_additional_mem_pool_size=1M
  172. # messure database size and adjust
  173. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  174. innodb_buffer_pool_size=80M
  175. # size of average write burst, keep Innob_log_waits small, keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
  176. innodb_log_file_size=64M
  177. innodb_flush_log_at_trx_commit=2
  178.  
  179.  
  180.  
  181. Test 8: SUCCESS
  182. --------
  183.  
  184. akonadictl found and usable
  185. Details: The program '/usr/bin/akonadictl' to control the Akonadi server was found and could be executed successfully.
  186. Result:
  187. Akonadi 1.3.1
  188.  
  189.  
  190. Test 9: ERROR
  191. --------
  192.  
  193. Akonadi control process not registered at D-Bus.
  194. 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.
  195.  
  196. Test 10: ERROR
  197. --------
  198.  
  199. Akonadi server process not registered at D-Bus.
  200. 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.
  201.  
  202. Test 11: SUCCESS
  203. --------
  204.  
  205. Nepomuk search service registered at D-Bus.
  206. Details: The Nepomuk search service is registered at D-Bus which typically indicates it is operational.
  207.  
  208. Test 12: SUCCESS
  209. --------
  210.  
  211. Nepomuk search service uses an appropriate backend.
  212. Details: The Nepomuk search service uses one of the recommended backends.
  213.  
  214. Test 13: SKIP
  215. --------
  216.  
  217. Protocol version check not possible.
  218. Details: Without a connection to the server it is not possible to check if the protocol version meets the requirements.
  219.  
  220. Test 14: ERROR
  221. --------
  222.  
  223. No resource agents found.
  224. 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 /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 to.
  225.  
  226. Directory listing of '/usr/share/akonadi/agents':
  227. birthdaysresource.desktop
  228. contactsresource.desktop
  229. icalresource.desktop
  230. imapresource.desktop
  231. kabcresource.desktop
  232. kcalresource.desktop
  233. knutresource.desktop
  234. kolabproxyresource.desktop
  235. localbookmarksresource.desktop
  236. maildirresource.desktop
  237. maildispatcheragent.desktop
  238. mboxresource.desktop
  239. microblog.desktop
  240. mtdummyresource.desktop
  241. nepomukcalendarfeeder.desktop
  242. nepomukcontactfeeder.desktop
  243. nepomuktagresource.desktop
  244. nntpresource.desktop
  245. notesresource.desktop
  246. pop3resource.desktop
  247. vcarddirresource.desktop
  248. vcardresource.desktop
  249. Directory listing of '/usr/share/akonadi/agents':
  250. birthdaysresource.desktop
  251. contactsresource.desktop
  252. icalresource.desktop
  253. imapresource.desktop
  254. kabcresource.desktop
  255. kcalresource.desktop
  256. knutresource.desktop
  257. kolabproxyresource.desktop
  258. localbookmarksresource.desktop
  259. maildirresource.desktop
  260. maildispatcheragent.desktop
  261. mboxresource.desktop
  262. microblog.desktop
  263. mtdummyresource.desktop
  264. nepomukcalendarfeeder.desktop
  265. nepomukcontactfeeder.desktop
  266. nepomuktagresource.desktop
  267. nntpresource.desktop
  268. notesresource.desktop
  269. pop3resource.desktop
  270. vcarddirresource.desktop
  271. vcardresource.desktop
  272.  
  273. Environment variable XDG_DATA_DIRS is set to '/usr/share:/usr/share:/usr/local/share'
  274.  
  275. Test 15: ERROR
  276. --------
  277.  
  278. Current Akonadi server error log found.
  279. Details: The Akonadi server did report error during startup into <a href='/home/kwtm1/.local/share/akonadi/akonadiserver.error'>/home/kwtm1/.local/share/akonadi/akonadiserver.error</a>.
  280.  
  281. File content of '/home/kwtm1/.local/share/akonadi/akonadiserver.error':
  282. Database process exited unexpectedly during initial connection!
  283. executable: "/usr/sbin/mysqld-akonadi"
  284. arguments: ("--defaults-file=/home/kwtm1/.local/share/akonadi//mysql.conf", "--datadir=/home/kwtm1/.local/share/akonadi/db_data/", "--socket=/home/kwtm1/.local/share/akonadi/db_misc/mysql.socket")
  285. stdout: ""
  286. stderr: "Could not open required defaults file: /home/kwtm1/.local/share/akonadi//mysql.conf
  287. Fatal error in defaults handling. Program aborted
  288. 100429 12:20:37 [Warning] Can't create test file /home/kwtm1/.local/share/akonadi/db_data/macau.lower-test
  289. 100429 12:20:37 [Warning] Can't create test file /home/kwtm1/.local/share/akonadi/db_data/macau.lower-test
  290. 100429 12:20:37 [Note] Plugin 'FEDERATED' is disabled.
  291. /usr/sbin/mysqld-akonadi: Can't find file: './mysql/plugin.frm' (errno: 13)
  292. 100429 12:20:37 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
  293. 100429 12:20:37 InnoDB: Operating system error number 13 in a file operation.
  294. InnoDB: The error means mysqld does not have the access rights to
  295. InnoDB: the directory.
  296. InnoDB: File name ./ibdata1
  297. InnoDB: File operation call: 'create'.
  298. InnoDB: Cannot continue operation.
  299. "
  300. exit code: 1
  301. process error: "Unknown error"
  302. "[
  303. 0: akonadiserver(_Z11akBacktracev+0x35) [0x8052265]
  304. 1: akonadiserver() [0x8052726]
  305. 2: [0xe2d400]
  306. 3: [0xe2d422]
  307. 4: /lib/tls/i686/cmov/libc.so.6(gsignal+0x51) [0x531651]
  308. 5: /lib/tls/i686/cmov/libc.so.6(abort+0x182) [0x534a82]
  309. 6: /usr/lib/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x8c) [0xbaa2dc]
  310. 7: akonadiserver(_ZN15FileDebugStream9writeDataEPKcx+0xc4) [0x80537a4]
  311. 8: /usr/lib/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0x8e) [0xc4246e]
  312. 9: /usr/lib/libQtCore.so.4(+0x10a275) [0xc57275]
  313. 10: /usr/lib/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x3d) [0xc5878d]
  314. 11: akonadiserver(_ZN6QDebugD1Ev+0x43) [0x804dea3]
  315. 12: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer25startMysqlDatabaseProcessEv+0x2071) [0x7a2cb1]
  316. 13: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer20startDatabaseProcessEv+0x263) [0x7a5da3]
  317. 14: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServerC1EP7QObject+0x7d) [0x7a603d]
  318. 15: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer8instanceEv+0x58) [0x7a74f8]
  319. 16: akonadiserver(main+0x374) [0x804d204]
  320. 17: /lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xe6) [0x51dbd6]
  321. 18: akonadiserver() [0x804cdc1]
  322. ]
  323. "
  324.  
  325.  
  326. Test 16: ERROR
  327. --------
  328.  
  329. Previous Akonadi server error log found.
  330. Details: The Akonadi server did report error during its previous startup into <a href='/home/kwtm1/.local/share/akonadi/akonadiserver.error.old'>/home/kwtm1/.local/share/akonadi/akonadiserver.error.old</a>.
  331.  
  332. File content of '/home/kwtm1/.local/share/akonadi/akonadiserver.error.old':
  333. Database process exited unexpectedly during initial connection!
  334. executable: "/usr/sbin/mysqld-akonadi"
  335. arguments: ("--defaults-file=/home/kwtm1/.local/share/akonadi//mysql.conf", "--datadir=/home/kwtm1/.local/share/akonadi/db_data/", "--socket=/home/kwtm1/.local/share/akonadi/db_misc/mysql.socket")
  336. stdout: ""
  337. stderr: "Could not open required defaults file: /home/kwtm1/.local/share/akonadi//mysql.conf
  338. Fatal error in defaults handling. Program aborted
  339. 100429 12:20:36 [Warning] Can't create test file /home/kwtm1/.local/share/akonadi/db_data/macau.lower-test
  340. 100429 12:20:36 [Warning] Can't create test file /home/kwtm1/.local/share/akonadi/db_data/macau.lower-test
  341. 100429 12:20:36 [Note] Plugin 'FEDERATED' is disabled.
  342. /usr/sbin/mysqld-akonadi: Can't find file: './mysql/plugin.frm' (errno: 13)
  343. 100429 12:20:36 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
  344. 100429 12:20:36 InnoDB: Operating system error number 13 in a file operation.
  345. InnoDB: The error means mysqld does not have the access rights to
  346. InnoDB: the directory.
  347. InnoDB: File name ./ibdata1
  348. InnoDB: File operation call: 'create'.
  349. InnoDB: Cannot continue operation.
  350. "
  351. exit code: 1
  352. process error: "Unknown error"
  353. "[
  354. 0: akonadiserver(_Z11akBacktracev+0x35) [0x8052265]
  355. 1: akonadiserver() [0x8052726]
  356. 2: [0x167400]
  357. 3: [0x167422]
  358. 4: /lib/tls/i686/cmov/libc.so.6(gsignal+0x51) [0x5f4651]
  359. 5: /lib/tls/i686/cmov/libc.so.6(abort+0x182) [0x5f7a82]
  360. 6: /usr/lib/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x8c) [0x1c52dc]
  361. 7: akonadiserver(_ZN15FileDebugStream9writeDataEPKcx+0xc4) [0x80537a4]
  362. 8: /usr/lib/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0x8e) [0x25d46e]
  363. 9: /usr/lib/libQtCore.so.4(+0x10a275) [0x272275]
  364. 10: /usr/lib/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x3d) [0x27378d]
  365. 11: akonadiserver(_ZN6QDebugD1Ev+0x43) [0x804dea3]
  366. 12: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer25startMysqlDatabaseProcessEv+0x2071) [0x9c5cb1]
  367. 13: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer20startDatabaseProcessEv+0x263) [0x9c8da3]
  368. 14: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServerC1EP7QObject+0x7d) [0x9c903d]
  369. 15: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer8instanceEv+0x58) [0x9ca4f8]
  370. 16: akonadiserver(main+0x374) [0x804d204]
  371. 17: /lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xe6) [0x5e0bd6]
  372. 18: akonadiserver() [0x804cdc1]
  373. ]
  374. "
  375.  
  376.  
  377. Test 17: SUCCESS
  378. --------
  379.  
  380. No current Akonadi control error log found.
  381. Details: The Akonadi control process did not report any errors during its current startup.
  382.  
  383. Test 18: SUCCESS
  384. --------
  385.  
  386. No previous Akonadi control error log found.
  387. Details: The Akonadi control process did not report any errors during its previous startup.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement