Advertisement
Guest User

Untitled

a guest
Dec 28th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.88 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/knight/.config/akonadi/akonadiserverrc':
  11. [%General]
  12. Driver=QMYSQL
  13.  
  14. [QMYSQL]
  15. Name=akonadi
  16. Host=
  17. Options="UNIX_SOCKET=/tmp/akonadi-knight.s28keD/mysql.socket"
  18. ServerPath=/usr/sbin/mysqld
  19. StartServer=true
  20.  
  21. [Debug]
  22. Tracer=null
  23.  
  24.  
  25. Test 2: SUCCESS
  26. --------
  27.  
  28. Akonadi is not running as root
  29. Details: Akonadi is not running as a root/administrator user, which is the recommended setup for a secure system.
  30.  
  31. Test 3: SUCCESS
  32. --------
  33.  
  34. MySQL server found.
  35. Details: You have currently configured Akonadi to use the MySQL server '/usr/sbin/mysqld'.
  36. 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 location varies depending on the distribution.
  37.  
  38. Test 4: SUCCESS
  39. --------
  40.  
  41. MySQL server is executable.
  42. Details: MySQL server found: /usr/sbin/mysqld Ver 5.1.70-log for pc-linux-gnu on x86_64 (Gentoo Linux mysql-5.1.70)
  43.  
  44.  
  45. Test 5: SUCCESS
  46. --------
  47.  
  48. MySQL server log contains no errors.
  49. Details: The MySQL server log file &apos;<a href='/home/knight/.local/share/akonadi/db_data/mysql.err'>/home/knight/.local/share/akonadi/db_data/mysql.err</a>&apos; does not contain any errors or warnings.
  50.  
  51. File content of '/home/knight/.local/share/akonadi/db_data/mysql.err':
  52. 131228 10:10:27 InnoDB: Initializing buffer pool, size = 80.0M
  53. 131228 10:10:27 InnoDB: Completed initialization of buffer pool
  54. 131228 10:10:28 InnoDB: Started; log sequence number 0 2947421
  55. 131228 10:10:29 [Note] /usr/sbin/mysqld: ready for connections.
  56. Version: '5.1.70' socket: '/tmp/akonadi-knight.s28keD/mysql.socket' port: 0 Gentoo Linux mysql-5.1.70
  57.  
  58.  
  59. Test 6: SUCCESS
  60. --------
  61.  
  62. MySQL server default configuration found.
  63. 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>.
  64.  
  65. File content of '/usr/share/config/akonadi/mysql-global.conf':
  66. #
  67. # Global Akonadi MySQL server settings,
  68. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  69. #
  70. # Based on advice by Kris Köhntopp <kris@mysql.com>
  71. #
  72. [mysqld]
  73.  
  74. # strict query parsing/interpretation
  75. # TODO: make Akonadi work with those settings enabled
  76. # 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
  77. # sql_mode=strict_trans_tables
  78.  
  79. # DEBUGGING:
  80. # log all queries, useful for debugging but generates an enormous amount of data
  81. # log=mysql.full
  82. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  83. # log_slow_queries=mysql.slow
  84. # long_query_time=1
  85. # log queries not using indices, debug only, disable for production use
  86. # log_queries_not_using_indexes=1
  87. #
  88. # mesure database size and adjust innodb_buffer_pool_size
  89. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  90.  
  91. # NOTES:
  92. # Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
  93.  
  94. #expire_logs_days=3
  95.  
  96. #sync_bin_log=0
  97.  
  98. # Use UTF-8 encoding for tables
  99. character_set_server=utf8
  100. collation_server=utf8_general_ci
  101.  
  102. # use InnoDB for transactions and better crash recovery
  103. default_storage_engine=innodb
  104.  
  105. # memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
  106. # Deprecated in MySQL >= 5.6.3
  107. innodb_additional_mem_pool_size=1M
  108.  
  109. # memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
  110. # Larger values means less I/O
  111. innodb_buffer_pool_size=80M
  112.  
  113. # Create a .ibd file for each table (default:0)
  114. innodb_file_per_table=1
  115.  
  116. # Write out the log buffer to the log file at each commit (default:1)
  117. innodb_flush_log_at_trx_commit=2
  118.  
  119. # Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
  120. # larger values means less I/O
  121. innodb_log_buffer_size=1M
  122.  
  123. # Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
  124. innodb_log_file_size=64M
  125.  
  126. # # error log file name, relative to datadir (default:hostname.err)
  127. log_error=mysql.err
  128.  
  129. # print warnings and connection errors (default:1)
  130. log_warnings=2
  131.  
  132. # Convert table named to lowercase
  133. lower_case_table_names=1
  134.  
  135. # Maximum size of one packet or any generated/intermediate string. (default:1M)
  136. max_allowed_packet=32M
  137.  
  138. # Maximum simultaneous connections allowed (default:100)
  139. max_connections=256
  140.  
  141. # The two options below make no sense with prepared statements and/or transactions
  142. # (make sense when having the same query multiple times)
  143.  
  144. # Memory allocated for caching query results (default:0 (disabled))
  145. query_cache_size=0
  146.  
  147. # Do not cache results (default:1)
  148. query_cache_type=0
  149.  
  150. # Do not use the privileges mechanisms
  151. skip_grant_tables
  152.  
  153. # Do not listen for TCP/IP connections at all
  154. skip_networking
  155.  
  156. # The number of open tables for all threads. (default:64)
  157. table_open_cache=200
  158.  
  159. # How many threads the server should cache for reuse (default:0)
  160. thread_cache_size=3
  161.  
  162. # wait 365d before dropping the DB connection (default:8h)
  163. wait_timeout=31536000
  164.  
  165. # We use InnoDB, so don't let MyISAM eat up memory
  166. key_buffer_size=16K
  167.  
  168. [client]
  169. default-character-set=utf8
  170.  
  171.  
  172. Test 7: SKIP
  173. --------
  174.  
  175. MySQL server custom configuration not available.
  176. Details: The custom configuration for the MySQL server was not found but is optional.
  177.  
  178. Test 8: SUCCESS
  179. --------
  180.  
  181. MySQL server configuration is usable.
  182. Details: The MySQL server configuration was found at <a href='/home/knight/.local/share/akonadi/mysql.conf'>/home/knight/.local/share/akonadi/mysql.conf</a> and is readable.
  183.  
  184. File content of '/home/knight/.local/share/akonadi/mysql.conf':
  185. #
  186. # Global Akonadi MySQL server settings,
  187. # These settings can be adjusted using $HOME/.config/akonadi/mysql-local.conf
  188. #
  189. # Based on advice by Kris Köhntopp <kris@mysql.com>
  190. #
  191. [mysqld]
  192.  
  193. # strict query parsing/interpretation
  194. # TODO: make Akonadi work with those settings enabled
  195. # 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
  196. # sql_mode=strict_trans_tables
  197.  
  198. # DEBUGGING:
  199. # log all queries, useful for debugging but generates an enormous amount of data
  200. # log=mysql.full
  201. # log queries slower than n seconds, log file name relative to datadir (for debugging only)
  202. # log_slow_queries=mysql.slow
  203. # long_query_time=1
  204. # log queries not using indices, debug only, disable for production use
  205. # log_queries_not_using_indexes=1
  206. #
  207. # mesure database size and adjust innodb_buffer_pool_size
  208. # SELECT sum(data_length) as bla, sum(index_length) as blub FROM information_schema.tables WHERE table_schema not in ("mysql", "information_schema");
  209.  
  210. # NOTES:
  211. # Keep Innob_log_waits and keep Innodb_buffer_pool_wait_free small (see show global status like "inno%", show global variables)
  212.  
  213. #expire_logs_days=3
  214.  
  215. #sync_bin_log=0
  216.  
  217. # Use UTF-8 encoding for tables
  218. character_set_server=utf8
  219. collation_server=utf8_general_ci
  220.  
  221. # use InnoDB for transactions and better crash recovery
  222. default_storage_engine=innodb
  223.  
  224. # memory pool InnoDB uses to store data dictionary information and other internal data structures (default:1M)
  225. # Deprecated in MySQL >= 5.6.3
  226. innodb_additional_mem_pool_size=1M
  227.  
  228. # memory buffer InnoDB uses to cache data and indexes of its tables (default:128M)
  229. # Larger values means less I/O
  230. innodb_buffer_pool_size=80M
  231.  
  232. # Create a .ibd file for each table (default:0)
  233. innodb_file_per_table=1
  234.  
  235. # Write out the log buffer to the log file at each commit (default:1)
  236. innodb_flush_log_at_trx_commit=2
  237.  
  238. # Buffer size used to write to the log files on disk (default:1M for builtin, 8M for plugin)
  239. # larger values means less I/O
  240. innodb_log_buffer_size=1M
  241.  
  242. # Size of each log file in a log group (default:5M) larger means less I/O but more time for recovery.
  243. innodb_log_file_size=64M
  244.  
  245. # # error log file name, relative to datadir (default:hostname.err)
  246. log_error=mysql.err
  247.  
  248. # print warnings and connection errors (default:1)
  249. log_warnings=2
  250.  
  251. # Convert table named to lowercase
  252. lower_case_table_names=1
  253.  
  254. # Maximum size of one packet or any generated/intermediate string. (default:1M)
  255. max_allowed_packet=32M
  256.  
  257. # Maximum simultaneous connections allowed (default:100)
  258. max_connections=256
  259.  
  260. # The two options below make no sense with prepared statements and/or transactions
  261. # (make sense when having the same query multiple times)
  262.  
  263. # Memory allocated for caching query results (default:0 (disabled))
  264. query_cache_size=0
  265.  
  266. # Do not cache results (default:1)
  267. query_cache_type=0
  268.  
  269. # Do not use the privileges mechanisms
  270. skip_grant_tables
  271.  
  272. # Do not listen for TCP/IP connections at all
  273. skip_networking
  274.  
  275. # The number of open tables for all threads. (default:64)
  276. table_open_cache=200
  277.  
  278. # How many threads the server should cache for reuse (default:0)
  279. thread_cache_size=3
  280.  
  281. # wait 365d before dropping the DB connection (default:8h)
  282. wait_timeout=31536000
  283.  
  284. [client]
  285. default-character-set=utf8
  286.  
  287.  
  288. Test 9: SUCCESS
  289. --------
  290.  
  291. akonadictl found and usable
  292. Details: The program '/usr/bin/akonadictl' to control the Akonadi server was found and could be executed successfully.
  293. Result:
  294. Akonadi 1.11.0
  295.  
  296.  
  297. Test 10: ERROR
  298. --------
  299.  
  300. Akonadi control process not registered at D-Bus.
  301. 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.
  302.  
  303. Test 11: ERROR
  304. --------
  305.  
  306. Akonadi server process not registered at D-Bus.
  307. 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.
  308.  
  309. Test 12: ERROR
  310. --------
  311.  
  312. Nepomuk search service not registered at D-Bus.
  313. 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.
  314.  
  315. Test 13: SKIP
  316. --------
  317.  
  318. Protocol version check not possible.
  319. Details: Without a connection to the server it is not possible to check if the protocol version meets the requirements.
  320.  
  321. Test 14: ERROR
  322. --------
  323.  
  324. No resource agents found.
  325. 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'. 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.
  326.  
  327. Directory listing of '/usr/share/akonadi/agents':
  328. akonadinepomukfeederagent.desktop
  329. akonotesresource.desktop
  330. archivemailagent.desktop
  331. birthdaysresource.desktop
  332. contactsresource.desktop
  333. davgroupwareresource.desktop
  334. folderarchiveagent.desktop
  335. googlecalendarresource.desktop
  336. googlecontactsresource.desktop
  337. icaldirresource.desktop
  338. icalresource.desktop
  339. imapresource.desktop
  340. invitationsagent.desktop
  341. kabcresource.desktop
  342. kalarmdirresource.desktop
  343. kalarmresource.desktop
  344. kcalresource.desktop
  345. kdeaccountsresource.desktop
  346. localbookmarksresource.desktop
  347. maildirresource.desktop
  348. maildispatcheragent.desktop
  349. mailfilteragent.desktop
  350. mboxresource.desktop
  351. microblog.desktop
  352. migrationagent.desktop
  353. mixedmaildirresource.desktop
  354. mtdummyresource.desktop
  355. nepomuktagresource.desktop
  356. newmailnotifieragent.desktop
  357. nntpresource.desktop
  358. notesresource.desktop
  359. openxchangeresource.desktop
  360. pop3resource.desktop
  361. sendlateragent.desktop
  362. vcarddirresource.desktop
  363. vcardresource.desktop
  364.  
  365. Environment variable XDG_DATA_DIRS is set to '/usr/share:/usr/local/share:/usr/share'
  366.  
  367. Test 15: SUCCESS
  368. --------
  369.  
  370. No current Akonadi server error log found.
  371. Details: The Akonadi server did not report any errors during its current startup.
  372.  
  373. Test 16: ERROR
  374. --------
  375.  
  376. Previous Akonadi server error log found.
  377. Details: The Akonadi server reported errors during its previous startup. The log can be found in <a href='/home/knight/.local/share/akonadi/akonadiserver.error.old'>/home/knight/.local/share/akonadi/akonadiserver.error.old</a>.
  378.  
  379. File content of '/home/knight/.local/share/akonadi/akonadiserver.error.old':
  380. Nepomuk Query Server not available
  381. "Cannot connect to agent instance with identifier 'akonadi_maildir_resource_0', error message: 'Could not get owner of name 'org.freedesktop.Akonadi.Resource.akonadi_maildir_resource_0': no such name'"
  382. Control process died, committing suicide!
  383. D-Bus session bus went down - quitting
  384.  
  385.  
  386. Test 17: SUCCESS
  387. --------
  388.  
  389. No current Akonadi control error log found.
  390. Details: The Akonadi control process did not report any errors during its current startup.
  391.  
  392. Test 18: ERROR
  393. --------
  394.  
  395. Previous Akonadi control error log found.
  396. Details: The Akonadi control process reported errors during its previous startup. The log can be found in <a href='/home/knight/.local/share/akonadi/akonadi_control.error.old'>/home/knight/.local/share/akonadi/akonadi_control.error.old</a>.
  397.  
  398. File content of '/home/knight/.local/share/akonadi/akonadi_control.error.old':
  399. "D-Bus communication error 'org.freedesktop.DBus.Error.NoReply': 'Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.'"
  400. "D-Bus communication error 'org.freedesktop.DBus.Error.NoReply': 'Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.'"
  401. "D-Bus communication error 'org.freedesktop.DBus.Error.NoReply': 'Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.'"
  402. "D-Bus communication error 'org.freedesktop.DBus.Error.NoReply': 'Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.'"
  403. "D-Bus communication error 'org.freedesktop.DBus.Error.NoReply': 'Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.'"
  404. D-Bus session bus went down - quitting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement