Advertisement
Guest User

Untitled

a guest
May 9th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.08 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/carlos/.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/carlos/.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: /usr/sbin/mysqld Ver 5.1.41-3 for debian-linux-gnu on x86_64 ((Debian))
  42.  
  43.  
  44. Test 4: ERROR
  45. --------
  46.  
  47. MySQL server log contains errors.
  48. Details: The MySQL server error log file &apos;<a href='/home/carlos/.local/share/akonadi/db_data/mysql.err'>/home/carlos/.local/share/akonadi/db_data/mysql.err</a>&apos; contains errors.
  49.  
  50. File content of '/home/carlos/.local/share/akonadi/db_data/mysql.err':
  51. 091206 22:00:21 [Note] Plugin 'FEDERATED' is disabled.
  52. InnoDB: The first specified data file ./ibdata1 did not exist:
  53. InnoDB: a new database to be created!
  54. 091206 22:00:21 InnoDB: Setting file ./ibdata1 size to 10 MB
  55. InnoDB: Database physically writes the file full: wait...
  56. 091206 22:00:21 InnoDB: Log file ./ib_logfile0 did not exist: new to be created
  57. InnoDB: Setting log file ./ib_logfile0 size to 64 MB
  58. InnoDB: Database physically writes the file full: wait...
  59. 091206 22:00:24 InnoDB: Log file ./ib_logfile1 did not exist: new to be created
  60. InnoDB: Setting log file ./ib_logfile1 size to 64 MB
  61. InnoDB: Database physically writes the file full: wait...
  62. InnoDB: Doublewrite buffer not found: creating new
  63. InnoDB: Doublewrite buffer created
  64. InnoDB: Creating foreign key constraint system tables
  65. InnoDB: Foreign key constraint system tables created
  66. 091206 22:00:27 InnoDB: Started; log sequence number 0 0
  67. 091206 22:00:28 [Warning] Can't open and lock time zone table: Table 'mysql.time_zone_leap_second' doesn't exist trying to live without them
  68. 091206 22:00:28 [ERROR] Can't open and lock privilege tables: Table 'mysql.servers' doesn't exist
  69. 091206 22:00:28 [Note] /usr/sbin/mysqld: ready for connections.
  70. Version: '5.1.41-3-log' socket: '/home/carlos/.local/share/akonadi/db_misc/mysql.socket' port: 0 (Debian)
  71. 091206 23:22:49 [Note] /usr/sbin/mysqld: Normal shutdown
  72.  
  73. 091206 23:22:49 InnoDB: Starting shutdown...
  74. 091206 23:22:51 InnoDB: Shutdown completed; log sequence number 0 127972
  75. 091206 23:22:51 [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='/etc/akonadi/mysql-global.conf'>/etc/akonadi/mysql-global.conf</a>.
  84.  
  85. File content of '/etc/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/carlos/.local/share/akonadi/mysql.conf'>/home/carlos/.local/share/akonadi/mysql.conf</a> and is readable.
  153.  
  154. File content of '/home/carlos/.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. Akonadi 1.2.1
  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/share:/usr/local/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. microblog.desktop
  256. nepomuktagresource.desktop
  257. nntpresource.desktop
  258. notesresource.desktop
  259. strigifeeder.desktop
  260. vcarddirresource.desktop
  261. vcardresource.desktop
  262. Directory listing of '/usr/share/akonadi/agents':
  263. birthdaysresource.desktop
  264. distlistresource.desktop
  265. icalresource.desktop
  266. imapresource.desktop
  267. kabcresource.desktop
  268. kcalresource.desktop
  269. knutresource.desktop
  270. kolabproxyresource.desktop
  271. localbookmarksresource.desktop
  272. maildirresource.desktop
  273. microblog.desktop
  274. nepomuktagresource.desktop
  275. nntpresource.desktop
  276. notesresource.desktop
  277. strigifeeder.desktop
  278. vcarddirresource.desktop
  279. vcardresource.desktop
  280.  
  281. Environment variable XDG_DATA_DIRS is set to '/usr/share:/usr/share:/usr/local/share'
  282.  
  283. Test 13: ERROR
  284. --------
  285.  
  286. Current Akonadi server error log found.
  287. Details: The Akonadi server did report error during startup into <a href='/home/carlos/.local/share/akonadi/akonadiserver.error'>/home/carlos/.local/share/akonadi/akonadiserver.error</a>.
  288.  
  289. File content of '/home/carlos/.local/share/akonadi/akonadiserver.error':
  290. Control process died, committing suicide!
  291. D-Bus session bus went down - quitting
  292.  
  293.  
  294. Test 14: SUCCESS
  295. --------
  296.  
  297. No previous Akonadi server error log found.
  298. Details: The Akonadi server did not report any errors during its previous startup.
  299.  
  300. Test 15: SUCCESS
  301. --------
  302.  
  303. No current Akonadi control error log found.
  304. Details: The Akonadi control process did not report any errors during its current startup.
  305.  
  306. Test 16: SUCCESS
  307. --------
  308.  
  309. No previous Akonadi control error log found.
  310. Details: The Akonadi control process did not report any errors during its previous startup.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement