Advertisement
Guest User

Untitled

a guest
May 15th, 2017
541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.98 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 '/root/.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=/root/.local/share/akonadi/db_misc/mysql.socket"
  23. ServerPath=/usr/sbin/mysqld
  24. StartServer=true
  25.  
  26.  
  27. Test 2: SUCCESS
  28. --------
  29.  
  30. MySQL server found.
  31. Details: You currently have configured Akonadi to use the MySQL server '/usr/sbin/mysqld'.
  32. 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.
  33.  
  34. Test 3: SUCCESS
  35. --------
  36.  
  37. MySQL server is executable.
  38. Details: MySQL server found: /usr/sbin/mysqld Ver 5.1.45-1 for debian-linux-gnu on x86_64 ((Debian))
  39.  
  40.  
  41. Test 4: SUCCESS
  42. --------
  43.  
  44. No current MySQL error log found.
  45. Details: The MySQL server did not report any errors during this startup into '/root/.local/share/akonadi/db_data/mysql.err'.
  46.  
  47. Test 5: SUCCESS
  48. --------
  49.  
  50. MySQL server default configuration found.
  51. 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>.
  52.  
  53. File content of '/etc/akonadi/mysql-global.conf':
  54. #
  55. # Global Akonadi MySQL server settings,
  56. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  57. #
  58. # Based on advice by Kris Köhntopp <kris@mysql.com>
  59. #
  60. [mysqld]
  61. skip_grant_tables
  62. skip_networking
  63.  
  64. # strict query parsing/interpretation
  65. # TODO: make Akonadi work with those settings enabled
  66. #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
  67. #sql_mode=strict_trans_tables
  68.  
  69. # use InnoDB for transactions and better crash recovery
  70. default_storage_engine=innodb
  71. # case-insensitive table names, avoids trouble on windows
  72. lower_case_table_names=1
  73. character_set_server=latin1
  74. collation_server=latin1_general_ci
  75. table_cache=200
  76. thread_cache_size=3
  77. log_bin=mysql-bin
  78. expire_logs_days=3
  79. #sync_bin_log=0
  80. # error log file name, relative to datadir
  81. log_error=mysql.err
  82. log_warnings=2
  83. # log all queries, useful for debugging but generates an enormous amount of data
  84. #log=mysql.full
  85. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  86. #log_slow_queries=mysql.slow
  87. #long_query_time=1
  88. # log queries not using indices, debug only, disable for production use
  89. #log_queries_not_using_indexes=1
  90. # maximum blob size
  91. max_allowed_packet=32M
  92. max_connections=256
  93. # makes sense when having the same query multiple times
  94. # makes no sense with prepared statements and/or transactions
  95. query_cache_type=0
  96. query_cache_size=0
  97.  
  98. innodb_file_per_table=1
  99. innodb_log_buffer_size=1M
  100. innodb_additional_mem_pool_size=1M
  101. # messure database size and adjust
  102. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  103. innodb_buffer_pool_size=80M
  104. # 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)
  105. innodb_log_file_size=64M
  106. innodb_flush_log_at_trx_commit=2
  107.  
  108.  
  109.  
  110. Test 6: SKIP
  111. --------
  112.  
  113. MySQL server custom configuration not available.
  114. Details: The custom configuration for the MySQL server was not found but is optional.
  115.  
  116. Test 7: SUCCESS
  117. --------
  118.  
  119. MySQL server configuration is usable.
  120. Details: The MySQL server configuration was found at <a href='/root/.local/share/akonadi/mysql.conf'>/root/.local/share/akonadi/mysql.conf</a> and is readable.
  121.  
  122. File content of '/root/.local/share/akonadi/mysql.conf':
  123. #
  124. # Global Akonadi MySQL server settings,
  125. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  126. #
  127. # Based on advice by Kris Köhntopp <kris@mysql.com>
  128. #
  129. [mysqld]
  130. skip_grant_tables
  131. skip_networking
  132.  
  133. # strict query parsing/interpretation
  134. # TODO: make Akonadi work with those settings enabled
  135. #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
  136. #sql_mode=strict_trans_tables
  137.  
  138. # use InnoDB for transactions and better crash recovery
  139. default_storage_engine=innodb
  140. # case-insensitive table names, avoids trouble on windows
  141. lower_case_table_names=1
  142. character_set_server=latin1
  143. collation_server=latin1_general_ci
  144. table_cache=200
  145. thread_cache_size=3
  146. log_bin=mysql-bin
  147. expire_logs_days=3
  148. #sync_bin_log=0
  149. # error log file name, relative to datadir
  150. log_error=mysql.err
  151. log_warnings=2
  152. # log all queries, useful for debugging but generates an enormous amount of data
  153. #log=mysql.full
  154. # log queries slower than n seconds, log file name relative to datadir
  155. log_slow_queries=mysql.slow
  156. long_query_time=1
  157. # log queries not using indices, debug only, disable for production use
  158. log_queries_not_using_indexes=1
  159. # maximum blob size
  160. max_allowed_packet=32M
  161. max_connections=256
  162. # makes sense when having the same query multiple times
  163. # makes no sense with prepared statements and/or transactions
  164. query_cache_type=0
  165. query_cache_size=0
  166.  
  167. innodb_file_per_table=1
  168. innodb_log_buffer_size=1M
  169. innodb_additional_mem_pool_size=1M
  170. # messure database size and adjust
  171. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  172. innodb_buffer_pool_size=80M
  173. # 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)
  174. innodb_log_file_size=64M
  175. innodb_flush_log_at_trx_commit=2
  176.  
  177.  
  178.  
  179. Test 8: SUCCESS
  180. --------
  181.  
  182. akonadictl found and usable
  183. Details: The program '/usr/bin/akonadictl' to control the Akonadi server was found and could be executed successfully.
  184. Result:
  185. Akonadi 1.3.1
  186.  
  187.  
  188. Test 9: ERROR
  189. --------
  190.  
  191. Akonadi control process not registered at D-Bus.
  192. 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.
  193.  
  194. Test 10: ERROR
  195. --------
  196.  
  197. Akonadi server process not registered at D-Bus.
  198. 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.
  199.  
  200. Test 11: SKIP
  201. --------
  202.  
  203. Protocol version check not possible.
  204. Details: Without a connection to the server it is not possible to check if the protocol version meets the requirements.
  205.  
  206. Test 12: ERROR
  207. --------
  208.  
  209. No resource agents found.
  210. 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.
  211.  
  212. Directory listing of '/usr/share/akonadi/agents':
  213. birthdaysresource.desktop
  214. distlistresource.desktop
  215. icalresource.desktop
  216. imapresource.desktop
  217. kabcresource.desktop
  218. kcalresource.desktop
  219. knutresource.desktop
  220. kolabproxyresource.desktop
  221. localbookmarksresource.desktop
  222. maildirresource.desktop
  223. microblog.desktop
  224. nepomuktagresource.desktop
  225. nntpresource.desktop
  226. notesresource.desktop
  227. strigifeeder.desktop
  228. vcarddirresource.desktop
  229. vcardresource.desktop
  230. Directory listing of '/usr/share/akonadi/agents':
  231. birthdaysresource.desktop
  232. distlistresource.desktop
  233. icalresource.desktop
  234. imapresource.desktop
  235. kabcresource.desktop
  236. kcalresource.desktop
  237. knutresource.desktop
  238. kolabproxyresource.desktop
  239. localbookmarksresource.desktop
  240. maildirresource.desktop
  241. microblog.desktop
  242. nepomuktagresource.desktop
  243. nntpresource.desktop
  244. notesresource.desktop
  245. strigifeeder.desktop
  246. vcarddirresource.desktop
  247. vcardresource.desktop
  248.  
  249. Environment variable XDG_DATA_DIRS is set to '/usr/share:/usr/share:/usr/local/share'
  250.  
  251. Test 13: ERROR
  252. --------
  253.  
  254. Current Akonadi server error log found.
  255. Details: The Akonadi server did report error during startup into <a href='/root/.local/share/akonadi/akonadiserver.error'>/root/.local/share/akonadi/akonadiserver.error</a>.
  256.  
  257. File content of '/root/.local/share/akonadi/akonadiserver.error':
  258. Database process exited unexpectedly during initial connection!
  259. executable: "/usr/sbin/mysqld"
  260. arguments: ("--defaults-file=/root/.local/share/akonadi//mysql.conf", "--datadir=/root/.local/share/akonadi/db_data/", "--socket=/root/.local/share/akonadi/db_misc/mysql.socket")
  261. stdout: ""
  262. stderr: "100111 1:46:51 [Warning] The syntax '--log_slow_queries' is deprecated and will be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file' instead.
  263. 100111 1:46:51 [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
  264.  
  265. 100111 1:46:51 [ERROR] Aborting
  266.  
  267. 100111 1:46:51 [Note] /usr/sbin/mysqld: Shutdown complete
  268.  
  269. "
  270. exit code: 1
  271. process error: "Unknown error"
  272. "[
  273. 0: akonadiserver(_Z11akBacktracev+0x39) [0x40b419]
  274. 1: akonadiserver [0x40b952]
  275. 2: /lib/libc.so.6 [0x7f53d1ceafd0]
  276. 3: /lib/libc.so.6(gsignal+0x35) [0x7f53d1ceaf55]
  277. 4: /lib/libc.so.6(abort+0x180) [0x7f53d1cedd90]
  278. 5: /usr/lib/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x85) [0x7f53d2c75735]
  279. 6: akonadiserver(_ZN15FileDebugStream9writeDataEPKcx+0xa8) [0x40c638]
  280. 7: /usr/lib/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0x81) [0x7f53d2cffbf1]
  281. 8: /usr/lib/libQtCore.so.4 [0x7f53d2d0bce2]
  282. 9: /usr/lib/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x68) [0x7f53d2d0bf88]
  283. 10: akonadiserver(_ZN6QDebugD1Ev+0x4b) [0x406e0b]
  284. 11: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer20startDatabaseProcessEv+0x193e) [0x7f53d32ca40e]
  285. 12: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServerC1EP7QObject+0x6b) [0x7f53d32cc6bb]
  286. 13: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer8instanceEv+0x47) [0x7f53d32cd937]
  287. 14: akonadiserver(main+0x366) [0x4061c6]
  288. 15: /lib/libc.so.6(__libc_start_main+0xfd) [0x7f53d1cd7abd]
  289. 16: akonadiserver [0x405d69]
  290. ]
  291. "
  292.  
  293.  
  294. Test 14: ERROR
  295. --------
  296.  
  297. Previous Akonadi server error log found.
  298. Details: The Akonadi server did report error during its previous startup into <a href='/root/.local/share/akonadi/akonadiserver.error.old'>/root/.local/share/akonadi/akonadiserver.error.old</a>.
  299.  
  300. File content of '/root/.local/share/akonadi/akonadiserver.error.old':
  301. Database process exited unexpectedly during initial connection!
  302. executable: "/usr/sbin/mysqld"
  303. arguments: ("--defaults-file=/root/.local/share/akonadi//mysql.conf", "--datadir=/root/.local/share/akonadi/db_data/", "--socket=/root/.local/share/akonadi/db_misc/mysql.socket")
  304. stdout: ""
  305. stderr: "100111 1:46:51 [Warning] The syntax '--log_slow_queries' is deprecated and will be removed in MySQL 7.0. Please use '--slow_query_log'/'--slow_query_log_file' instead.
  306. 100111 1:46:51 [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!
  307.  
  308. 100111 1:46:51 [ERROR] Aborting
  309.  
  310. 100111 1:46:51 [Note] /usr/sbin/mysqld: Shutdown complete
  311.  
  312. "
  313. exit code: 1
  314. process error: "Unknown error"
  315. "[
  316. 0: akonadiserver(_Z11akBacktracev+0x39) [0x40b419]
  317. 1: akonadiserver [0x40b952]
  318. 2: /lib/libc.so.6 [0x7ffc7b011fd0]
  319. 3: /lib/libc.so.6(gsignal+0x35) [0x7ffc7b011f55]
  320. 4: /lib/libc.so.6(abort+0x180) [0x7ffc7b014d90]
  321. 5: /usr/lib/libQtCore.so.4(_Z17qt_message_output9QtMsgTypePKc+0x85) [0x7ffc7bf9c735]
  322. 6: akonadiserver(_ZN15FileDebugStream9writeDataEPKcx+0xa8) [0x40c638]
  323. 7: /usr/lib/libQtCore.so.4(_ZN9QIODevice5writeEPKcx+0x81) [0x7ffc7c026bf1]
  324. 8: /usr/lib/libQtCore.so.4 [0x7ffc7c032ce2]
  325. 9: /usr/lib/libQtCore.so.4(_ZN11QTextStreamD1Ev+0x68) [0x7ffc7c032f88]
  326. 10: akonadiserver(_ZN6QDebugD1Ev+0x4b) [0x406e0b]
  327. 11: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer20startDatabaseProcessEv+0x193e) [0x7ffc7c5f140e]
  328. 12: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServerC1EP7QObject+0x6b) [0x7ffc7c5f36bb]
  329. 13: /usr/lib/libakonadiprivate.so.1(_ZN7Akonadi13AkonadiServer8instanceEv+0x47) [0x7ffc7c5f4937]
  330. 14: akonadiserver(main+0x366) [0x4061c6]
  331. 15: /lib/libc.so.6(__libc_start_main+0xfd) [0x7ffc7affeabd]
  332. 16: akonadiserver [0x405d69]
  333. ]
  334. "
  335.  
  336.  
  337. Test 15: SUCCESS
  338. --------
  339.  
  340. No current Akonadi control error log found.
  341. Details: The Akonadi control process did not report any errors during its current startup.
  342.  
  343. Test 16: SUCCESS
  344. --------
  345.  
  346. No previous Akonadi control error log found.
  347. Details: The Akonadi control process did not report any errors during its previous startup.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement