Advertisement
Guest User

Untitled

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