Advertisement
Guest User

Untitled

a guest
May 17th, 2010
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.64 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/mikes/.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/mikes/.local/share/akonadi/db_misc/mysql.socket"
  22. ServerPath=/usr/sbin/mysqld
  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'.
  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 Ver 5.1.46 for unknown-linux-gnu on x86_64 (Source distribution)
  41.  
  42.  
  43. Test 4: SUCCESS
  44. --------
  45.  
  46. MySQL server log contains no errors.
  47. Details: The MySQL server log file &apos;<a href='/home/mikes/.local/share/akonadi/db_data/mysql.err'>/home/mikes/.local/share/akonadi/db_data/mysql.err</a>&apos; does not contain any errors or warnings.
  48.  
  49. File content of '/home/mikes/.local/share/akonadi/db_data/mysql.err':
  50. 100517 14:25:45 [Note] Plugin 'FEDERATED' is disabled.
  51. 100517 14:25:45 [Note] Plugin 'ndbcluster' is disabled.
  52. 100517 14:25:46 InnoDB: Started; log sequence number 0 125032
  53. 100517 14:25:46 [Note] /usr/sbin/mysqld: ready for connections.
  54. Version: '5.1.46-log' socket: '/home/mikes/.local/share/akonadi/db_misc/mysql.socket' port: 0 Source distribution
  55.  
  56.  
  57. Test 5: SUCCESS
  58. --------
  59.  
  60. MySQL server default configuration found.
  61. Details: The default configuration for the MySQL server was found and is readable at <a href='/usr/share/config/akonadi/mysql-global.conf'>/usr/share/config/akonadi/mysql-global.conf</a>.
  62.  
  63. File content of '/usr/share/config/akonadi/mysql-global.conf':
  64. #
  65. # Global Akonadi MySQL server settings,
  66. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  67. #
  68. # Based on advice by Kris Köhntopp <kris@mysql.com>
  69. #
  70. [mysqld]
  71. skip_grant_tables
  72. skip_networking
  73.  
  74. # strict query parsing/interpretation
  75. # TODO: make Akonadi work with those settings enabled
  76. #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
  77. #sql_mode=strict_trans_tables
  78.  
  79. # use InnoDB for transactions and better crash recovery
  80. default_storage_engine=innodb
  81. # case-insensitive table names, avoids trouble on windows
  82. lower_case_table_names=1
  83. character_set_server=latin1
  84. collation_server=latin1_general_ci
  85. table_cache=200
  86. thread_cache_size=3
  87. log_bin=mysql-bin
  88. expire_logs_days=3
  89. #sync_bin_log=0
  90. # error log file name, relative to datadir
  91. log_error=mysql.err
  92. log_warnings=2
  93. # log all queries, useful for debugging but generates an enormous amount of data
  94. #log=mysql.full
  95. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  96. #log_slow_queries=mysql.slow
  97. #long_query_time=1
  98. # log queries not using indices, debug only, disable for production use
  99. #log_queries_not_using_indexes=1
  100. # maximum blob size
  101. max_allowed_packet=32M
  102. max_connections=256
  103. # makes sense when having the same query multiple times
  104. # makes no sense with prepared statements and/or transactions
  105. query_cache_type=0
  106. query_cache_size=0
  107.  
  108. innodb_file_per_table=1
  109. innodb_log_buffer_size=1M
  110. innodb_additional_mem_pool_size=1M
  111. # messure database size and adjust
  112. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  113. innodb_buffer_pool_size=80M
  114. # 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)
  115. innodb_log_file_size=64M
  116. innodb_flush_log_at_trx_commit=2
  117.  
  118.  
  119.  
  120. Test 6: SKIP
  121. --------
  122.  
  123. MySQL server custom configuration not available.
  124. Details: The custom configuration for the MySQL server was not found but is optional.
  125.  
  126. Test 7: SUCCESS
  127. --------
  128.  
  129. MySQL server configuration is usable.
  130. Details: The MySQL server configuration was found at <a href='/home/mikes/.local/share/akonadi/mysql.conf'>/home/mikes/.local/share/akonadi/mysql.conf</a> and is readable.
  131.  
  132. File content of '/home/mikes/.local/share/akonadi/mysql.conf':
  133. #
  134. # Global Akonadi MySQL server settings,
  135. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  136. #
  137. # Based on advice by Kris Köhntopp <kris@mysql.com>
  138. #
  139. [mysqld]
  140. skip_grant_tables
  141. skip_networking
  142.  
  143. # strict query parsing/interpretation
  144. # TODO: make Akonadi work with those settings enabled
  145. #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
  146. #sql_mode=strict_trans_tables
  147.  
  148. # use InnoDB for transactions and better crash recovery
  149. default_storage_engine=innodb
  150. # case-insensitive table names, avoids trouble on windows
  151. lower_case_table_names=1
  152. character_set_server=latin1
  153. collation_server=latin1_general_ci
  154. table_cache=200
  155. thread_cache_size=3
  156. log_bin=mysql-bin
  157. expire_logs_days=3
  158. #sync_bin_log=0
  159. # error log file name, relative to datadir
  160. log_error=mysql.err
  161. log_warnings=2
  162. # log all queries, useful for debugging but generates an enormous amount of data
  163. #log=mysql.full
  164. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  165. #log_slow_queries=mysql.slow
  166. #long_query_time=1
  167. # log queries not using indices, debug only, disable for production use
  168. #log_queries_not_using_indexes=1
  169. # maximum blob size
  170. max_allowed_packet=32M
  171. max_connections=256
  172. # makes sense when having the same query multiple times
  173. # makes no sense with prepared statements and/or transactions
  174. query_cache_type=0
  175. query_cache_size=0
  176.  
  177. innodb_file_per_table=1
  178. innodb_log_buffer_size=1M
  179. innodb_additional_mem_pool_size=1M
  180. # messure database size and adjust
  181. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  182. innodb_buffer_pool_size=80M
  183. # 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)
  184. innodb_log_file_size=64M
  185. innodb_flush_log_at_trx_commit=2
  186.  
  187.  
  188.  
  189. Test 8: SUCCESS
  190. --------
  191.  
  192. akonadictl found and usable
  193. Details: The program '/usr/bin/akonadictl' to control the Akonadi server was found and could be executed successfully.
  194. Result:
  195. Akonadi 1.3.1
  196.  
  197.  
  198. Test 9: SUCCESS
  199. --------
  200.  
  201. Akonadi control process registered at D-Bus.
  202. Details: The Akonadi control process is registered at D-Bus which typically indicates it is operational.
  203.  
  204. Test 10: SUCCESS
  205. --------
  206.  
  207. Akonadi server process registered at D-Bus.
  208. Details: The Akonadi server process is registered at D-Bus which typically indicates it is operational.
  209.  
  210. Test 11: SUCCESS
  211. --------
  212.  
  213. Nepomuk search service registered at D-Bus.
  214. Details: The Nepomuk search service is registered at D-Bus which typically indicates it is operational.
  215.  
  216. Test 12: SUCCESS
  217. --------
  218.  
  219. Nepomuk search service uses an appropriate backend.
  220. Details: The Nepomuk search service uses one of the recommended backends.
  221.  
  222. Test 13: SKIP
  223. --------
  224.  
  225. Protocol version check not possible.
  226. Details: Without a connection to the server it is not possible to check if the protocol version meets the requirements.
  227.  
  228. Test 14: ERROR
  229. --------
  230.  
  231. No resource agents found.
  232. 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/local/share', make sure this includes all paths where Akonadi agents are installed to.
  233.  
  234. Directory listing of '/usr/share/akonadi/agents':
  235. birthdaysresource.desktop
  236. contactsresource.desktop
  237. icalresource.desktop
  238. imapresource.desktop
  239. kabcresource.desktop
  240. kcalresource.desktop
  241. knutresource.desktop
  242. kolabproxyresource.desktop
  243. localbookmarksresource.desktop
  244. maildirresource.desktop
  245. maildispatcheragent.desktop
  246. mboxresource.desktop
  247. microblog.desktop
  248. mtdummyresource.desktop
  249. nepomukcalendarfeeder.desktop
  250. nepomukcontactfeeder.desktop
  251. nepomuktagresource.desktop
  252. nntpresource.desktop
  253. notesresource.desktop
  254. pop3resource.desktop
  255. vcarddirresource.desktop
  256. vcardresource.desktop
  257.  
  258. Environment variable XDG_DATA_DIRS is set to '/usr/share:/usr/local/share'
  259.  
  260. Test 15: SUCCESS
  261. --------
  262.  
  263. No current Akonadi server error log found.
  264. Details: The Akonadi server did not report any errors during its current startup.
  265.  
  266. Test 16: SUCCESS
  267. --------
  268.  
  269. No previous Akonadi server error log found.
  270. Details: The Akonadi server did not report any errors during its previous startup.
  271.  
  272. Test 17: SUCCESS
  273. --------
  274.  
  275. No current Akonadi control error log found.
  276. Details: The Akonadi control process did not report any errors during its current startup.
  277.  
  278. Test 18: SUCCESS
  279. --------
  280.  
  281. No previous Akonadi control error log found.
  282. Details: The Akonadi control process did not report any errors during its previous startup.
  283.  
  284. Akonadi server error log found.
  285. Details: The Akonadi server did not report any errors during its current startup.
  286.  
  287. Test 16: SUCCESS
  288. --------
  289.  
  290. No previous Akonadi server error log found.
  291. Details: The Akonadi server did not report any errors during its previous startup.
  292.  
  293. Test 17: SUCCESS
  294. --------
  295.  
  296. No current Akonadi control error log found.
  297. Details: The Akonadi control process did not report any errors during its current startup.
  298.  
  299. Test 18: SUCCESS
  300. --------
  301.  
  302. No previous Akonadi control error log found.
  303. Details: The Akonadi control process did not report any errors during its previous startup.
  304.  
  305. onadiserver.error.old</a>.
  306.  
  307. File content of '/home/mikes/.local/share/akonadi/akonadiserver.error.old':
  308. Failed to remove runtime connection config file
  309.  
  310.  
  311. Test 17: SUCCESS
  312. --------
  313.  
  314. No current Akonadi control error log found.
  315. Details: The Akonadi control process did not report any errors during its current startup.
  316.  
  317. Test 18: SUCCESS
  318. --------
  319.  
  320. No previous Akonadi control error log found.
  321. Details: The Akonadi control process did not report any errors during its previous startup.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement