Advertisement
Guest User

Untitled

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