Guest User

Untitled

a guest
Jun 21st, 2018
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.65 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.
  9. The following drivers are installed: QSQLITE, QMYSQL3, QMYSQL.
  10. Make sure the required driver is installed.
  11.  
  12. File content of '/home/ablepharus/.config/akonadi/akonadiserverrc':
  13. [%General]
  14. Driver=QMYSQL
  15. SizeThreshold=4096
  16. ExternalPayload=false
  17.  
  18. [QMYSQL]
  19. Name=akonadi
  20. User=
  21. Password=
  22. Options="UNIX_SOCKET=/home/ablepharus/.local/share/akonadi/db_misc/mysql.socket"
  23. ServerPath=/usr/sbin/mysqld
  24. StartServer=true
  25.  
  26. [Debug]
  27. Tracer=null
  28.  
  29.  
  30. Test 2: SUCCESS
  31. --------
  32.  
  33. MySQL server found.
  34. Details: You currently have configured Akonadi to use the MySQL server '/usr/sbin/mysqld'.
  35. 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.
  36.  
  37. Test 3: SUCCESS
  38. --------
  39.  
  40. MySQL server is executable.
  41. Details: MySQL server found: 090622 17:11:01 [Warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295
  42. 090622 17:11:01 [Warning] option 'max_join_size': unsigned value 18446744073709551615 adjusted to 4294967295
  43. /usr/sbin/mysqld Ver 5.0.70-log for pc-linux-gnu on i686 (Gentoo Linux mysql-5.0.70-r1)
  44.  
  45.  
  46. Test 4: WARNING
  47. --------
  48.  
  49. MySQL server log contains warnings.
  50. Details: The MySQL server log file &apos;<a href='/home/ablepharus/.local/share/akonadi/db_data/mysql.err'>/home/ablepharus/.local/share/akonadi/db_data/mysql.err</a>&apos; contains warnings.
  51.  
  52. File content of '/home/ablepharus/.local/share/akonadi/db_data/mysql.err':
  53. InnoDB: The first specified data file ./ibdata1 did not exist:
  54. InnoDB: a new database to be created!
  55. 090622 12:31:44 InnoDB: Setting file ./ibdata1 size to 10 MB
  56. InnoDB: Database physically writes the file full: wait...
  57. 090622 12:31:44 InnoDB: Log file ./ib_logfile0 did not exist: new to be created
  58. InnoDB: Setting log file ./ib_logfile0 size to 64 MB
  59. InnoDB: Database physically writes the file full: wait...
  60. 090622 12:31:45 InnoDB: Log file ./ib_logfile1 did not exist: new to be created
  61. InnoDB: Setting log file ./ib_logfile1 size to 64 MB
  62. InnoDB: Database physically writes the file full: wait...
  63. InnoDB: Doublewrite buffer not found: creating new
  64. InnoDB: Doublewrite buffer created
  65. InnoDB: Creating foreign key constraint system tables
  66. InnoDB: Foreign key constraint system tables created
  67. 090622 12:31:46 InnoDB: Started; log sequence number 0 0
  68. 090622 12:31:46 [Warning] Can't open and lock time zone table: Table 'mysql.time_zone_leap_second' doesn't exist trying to live without them
  69. 090622 12:31:46 [Note] /usr/sbin/mysqld: ready for connections.
  70. Version: '5.0.70-log' socket: '/home/ablepharus/.local/share/akonadi/db_misc/mysql.socket' port: 0 Gentoo Linux mysql-5.0.70-r1
  71. 090622 16:35:48 [Note] /usr/sbin/mysqld: Normal shutdown
  72.  
  73. 090622 16:35:48 InnoDB: Starting shutdown...
  74. 090622 16:35:50 InnoDB: Shutdown completed; log sequence number 0 124028
  75. 090622 16:35:50 [Note] /usr/sbin/mysqld: Shutdown complete
  76.  
  77.  
  78.  
  79. Test 5: SUCCESS
  80. --------
  81.  
  82. MySQL server default configuration found.
  83. 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>.
  84.  
  85. File content of '/usr/share/config/akonadi/mysql-global.conf':
  86. #
  87. # Global Akonadi MySQL server settings,
  88. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  89. #
  90. # Based on advice by Kris Köhntopp <kris@mysql.com>
  91. #
  92. [mysqld]
  93. skip_grant_tables
  94. skip_networking
  95.  
  96. # strict query parsing/interpretation
  97. # TODO: make Akonadi work with those settings enabled
  98. #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
  99. #sql_mode=strict_trans_tables
  100.  
  101. # use InnoDB for transactions and better crash recovery
  102. default_storage_engine=innodb
  103. # case-insensitive table names, avoids trouble on windows
  104. lower_case_table_names=1
  105. character_set_server=latin1
  106. collation_server=latin1_general_ci
  107. table_cache=200
  108. thread_cache_size=3
  109. log_bin=mysql-bin
  110. expire_logs_days=3
  111. #sync_bin_log=0
  112. # error log file name, relative to datadir
  113. log_error=mysql.err
  114. log_warnings=2
  115. # log all queries, useful for debugging but generates an enormous amount of data
  116. #log=mysql.full
  117. # log queries slower than n seconds, log file name relative to datadir
  118. log_slow_queries=mysql.slow
  119. long_query_time=1
  120. # log queries not using indices, debug only, disable for production use
  121. log_queries_not_using_indexes=1
  122. # maximum blob size
  123. max_allowed_packet=32M
  124. max_connections=256
  125. # makes sense when having the same query multiple times
  126. # makes no sense with prepared statements and/or transactions
  127. query_cache_type=0
  128. query_cache_size=0
  129.  
  130. innodb_file_per_table=1
  131. innodb_log_buffer_size=1M
  132. innodb_additional_mem_pool_size=1M
  133. # messure database size and adjust
  134. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  135. innodb_buffer_pool_size=80M
  136. # 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)
  137. innodb_log_file_size=64M
  138. innodb_flush_log_at_trx_commit=2
  139.  
  140.  
  141.  
  142. Test 6: SKIP
  143. --------
  144.  
  145. MySQL server custom configuration not available.
  146. Details: The custom configuration for the MySQL server was not found but is optional.
  147.  
  148. Test 7: SUCCESS
  149. --------
  150.  
  151. MySQL server configuration is usable.
  152. Details: The MySQL server configuration was found at <a href='/home/ablepharus/.local/share/akonadi/mysql.conf'>/home/ablepharus/.local/share/akonadi/mysql.conf</a> and is readable.
  153.  
  154. File content of '/home/ablepharus/.local/share/akonadi/mysql.conf':
  155. #
  156. # Global Akonadi MySQL server settings,
  157. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  158. #
  159. # Based on advice by Kris Köhntopp <kris@mysql.com>
  160. #
  161. [mysqld]
  162. skip_grant_tables
  163. skip_networking
  164.  
  165. # strict query parsing/interpretation
  166. # TODO: make Akonadi work with those settings enabled
  167. #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
  168. #sql_mode=strict_trans_tables
  169.  
  170. # use InnoDB for transactions and better crash recovery
  171. default_storage_engine=innodb
  172. # case-insensitive table names, avoids trouble on windows
  173. lower_case_table_names=1
  174. character_set_server=latin1
  175. collation_server=latin1_general_ci
  176. table_cache=200
  177. thread_cache_size=3
  178. log_bin=mysql-bin
  179. expire_logs_days=3
  180. #sync_bin_log=0
  181. # error log file name, relative to datadir
  182. log_error=mysql.err
  183. log_warnings=2
  184. # log all queries, useful for debugging but generates an enormous amount of data
  185. #log=mysql.full
  186. # log queries slower than n seconds, log file name relative to datadir
  187. log_slow_queries=mysql.slow
  188. long_query_time=1
  189. # log queries not using indices, debug only, disable for production use
  190. log_queries_not_using_indexes=1
  191. # maximum blob size
  192. max_allowed_packet=32M
  193. max_connections=256
  194. # makes sense when having the same query multiple times
  195. # makes no sense with prepared statements and/or transactions
  196. query_cache_type=0
  197. query_cache_size=0
  198.  
  199. innodb_file_per_table=1
  200. innodb_log_buffer_size=1M
  201. innodb_additional_mem_pool_size=1M
  202. # messure database size and adjust
  203. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  204. innodb_buffer_pool_size=80M
  205. # 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)
  206. innodb_log_file_size=64M
  207. innodb_flush_log_at_trx_commit=2
  208.  
  209.  
  210.  
  211. Test 8: SUCCESS
  212. --------
  213.  
  214. akonadictl found and usable
  215. Details: The program '/usr/bin/akonadictl' to control the Akonadi server was found and could be executed successfully.
  216. Result:
  217. /usr/bin/akonadictl: symbol lookup error: /usr/bin/akonadictl: undefined symbol: _ZN5boost15program_options6detail7cmdline21set_additional_parserENS_9function1ISt4pairISsSsERKSsSaINS_13function_baseEEEE
  218.  
  219.  
  220. Test 9: ERROR
  221. --------
  222.  
  223. Akonadi control process not registered at D-Bus.
  224. 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.
  225.  
  226. Test 10: ERROR
  227. --------
  228.  
  229. Akonadi server process not registered at D-Bus.
  230. 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.
  231.  
  232. Test 11: SKIP
  233. --------
  234.  
  235. Protocol version check not possible.
  236. Details: Without a connection to the server it is not possible to check if the protocol version meets the requirements.
  237.  
  238. Test 12: ERROR
  239. --------
  240.  
  241. No resource agents found.
  242. 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/local/share:/usr/share', make sure this includes all paths where Akonadi agents are installed to.
  243.  
  244. Directory listing of '/usr/share/akonadi/agents':
  245. birthdaysresource.desktop
  246. distlistresource.desktop
  247. icalresource.desktop
  248. imapresource.desktop
  249. kabcresource.desktop
  250. kcalresource.desktop
  251. knutresource.desktop
  252. kolabproxyresource.desktop
  253. localbookmarksresource.desktop
  254. maildirresource.desktop
  255. mailthreaderagent.desktop
  256. mboxresource.desktop
  257. microblog.desktop
  258. nepomukcontactfeeder.desktop
  259. nepomukemailfeeder.desktop
  260. nepomuktagresource.desktop
  261. nntpresource.desktop
  262. notesresource.desktop
  263. strigifeeder.desktop
  264. vcarddirresource.desktop
  265. vcardresource.desktop
  266. Directory listing of '/usr/share/akonadi/agents':
  267. birthdaysresource.desktop
  268. distlistresource.desktop
  269. icalresource.desktop
  270. imapresource.desktop
  271. kabcresource.desktop
  272. kcalresource.desktop
  273. knutresource.desktop
  274. kolabproxyresource.desktop
  275. localbookmarksresource.desktop
  276. maildirresource.desktop
  277. mailthreaderagent.desktop
  278. mboxresource.desktop
  279. microblog.desktop
  280. nepomukcontactfeeder.desktop
  281. nepomukemailfeeder.desktop
  282. nepomuktagresource.desktop
  283. nntpresource.desktop
  284. notesresource.desktop
  285. strigifeeder.desktop
  286. vcarddirresource.desktop
  287. vcardresource.desktop
  288.  
  289. Environment variable XDG_DATA_DIRS is set to '/usr/share:/usr/local/share:/usr/share'
  290.  
  291. Test 13: ERROR
  292. --------
  293.  
  294. Current Akonadi server error log found.
  295. Details: The Akonadi server did report error during startup into <a href='/home/ablepharus/.local/share/akonadi/akonadiserver.error'>/home/ablepharus/.local/share/akonadi/akonadiserver.error</a>.
  296.  
  297. File content of '/home/ablepharus/.local/share/akonadi/akonadiserver.error':
  298. Control process died, committing suicide!
  299. D-Bus session bus went down - quitting
  300.  
  301.  
  302. Test 14: SUCCESS
  303. --------
  304.  
  305. No previous Akonadi server error log found.
  306. Details: The Akonadi server did not report any errors during its previous startup.
  307.  
  308. Test 15: SUCCESS
  309. --------
  310.  
  311. No current Akonadi control error log found.
  312. Details: The Akonadi control process did not report any errors during its current startup.
  313.  
  314. Test 16: SUCCESS
  315. --------
  316.  
  317. No previous Akonadi control error log found.
  318. Details: The Akonadi control process did not report any errors during its previous startup.
Add Comment
Please, Sign In to add comment