arachni 0.4.4 → 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. checksums.yaml +8 -8
  2. data/CHANGELOG.md +37 -0
  3. data/README.md +18 -3
  4. data/lib/arachni/element/capabilities/auditable.rb +5 -1
  5. data/lib/arachni/element/capabilities/auditable/taint.rb +37 -2
  6. data/lib/arachni/platform/fingerprinter.rb +4 -4
  7. data/lib/arachni/platform/manager.rb +15 -1
  8. data/lib/arachni/platforms.rb +2 -1
  9. data/lib/arachni/rpc/server/framework/distributor.rb +2 -2
  10. data/lib/arachni/spider.rb +1 -1
  11. data/lib/arachni/ui/cli/utilities.rb +1 -1
  12. data/lib/version +1 -1
  13. data/modules/audit/file_inclusion.rb +126 -0
  14. data/modules/audit/os_cmd_injection.rb +11 -9
  15. data/modules/audit/path_traversal.rb +21 -21
  16. data/modules/audit/source_code_disclosure.rb +16 -15
  17. data/modules/audit/sqli.rb +13 -6
  18. data/modules/audit/sqli/patterns/access +3 -0
  19. data/modules/audit/sqli/patterns/coldfusion +1 -0
  20. data/modules/audit/sqli/patterns/db2 +5 -0
  21. data/modules/audit/sqli/patterns/emc +2 -0
  22. data/modules/audit/sqli/patterns/firebird +2 -0
  23. data/modules/audit/sqli/patterns/frontbase +1 -0
  24. data/modules/audit/sqli/patterns/hsqldb +1 -0
  25. data/modules/audit/sqli/patterns/informix +3 -0
  26. data/modules/audit/sqli/patterns/ingres +3 -0
  27. data/modules/audit/sqli/patterns/interbase +2 -0
  28. data/modules/audit/sqli/patterns/maxdb +2 -0
  29. data/modules/audit/sqli/patterns/mssql +24 -0
  30. data/modules/audit/sqli/patterns/mysql +15 -0
  31. data/modules/audit/sqli/patterns/oracle +6 -0
  32. data/modules/audit/sqli/patterns/pgsql +8 -0
  33. data/modules/audit/sqli/patterns/sqlite +5 -0
  34. data/modules/audit/sqli/patterns/sybase +3 -0
  35. data/modules/recon/common_files/filenames.txt +1 -0
  36. data/modules/recon/localstart_asp.rb +67 -0
  37. data/path_extractors/comments.rb +30 -0
  38. data/path_extractors/meta_refresh.rb +8 -4
  39. data/plugins/uncommon_headers.rb +91 -0
  40. data/reports/html/default/issue.erb +1 -1
  41. data/reports/html/default/plugins.erb +3 -3
  42. data/reports/plugin_formatters/html/uncommon_headers.rb +47 -0
  43. data/reports/plugin_formatters/stdout/uncommon_headers.rb +37 -0
  44. data/reports/plugin_formatters/xml/discovery.rb +2 -0
  45. data/reports/plugin_formatters/xml/timing_attacks.rb +2 -0
  46. data/reports/plugin_formatters/xml/uncommon_headers.rb +38 -0
  47. data/reports/plugin_formatters/xml/uniformity.rb +2 -1
  48. data/reports/xml/buffer.rb +9 -5
  49. data/spec/arachni/element/capabilities/auditable/taint_spec.rb +295 -82
  50. data/spec/arachni/framework_spec.rb +48 -35
  51. data/spec/arachni/platform/manager_spec.rb +3 -2
  52. data/spec/modules/audit/file_inclusion_spec.rb +25 -0
  53. data/spec/modules/audit/path_traversal_spec.rb +3 -3
  54. data/spec/modules/audit/sqli_spec.rb +2 -1
  55. data/spec/modules/recon/localstart_asp_spec.rb +19 -0
  56. data/spec/path_extractors/comments_spec.rb +22 -0
  57. data/spec/path_extractors/meta_refresh_spec.rb +3 -3
  58. data/spec/plugins/uncommon_headers_spec.rb +64 -0
  59. data/spec/support/logs/Dispatcher - 1755-58492.log +9 -0
  60. data/spec/support/logs/Dispatcher - 1783-39171.log +21 -0
  61. data/spec/support/logs/Dispatcher - 1920-39032.log +9 -0
  62. data/spec/support/logs/Dispatcher - 1931-5309.log +19 -0
  63. data/spec/support/logs/Dispatcher - 1943-59691.log +17 -0
  64. data/spec/support/logs/Dispatcher - 1953-29898.log +13 -0
  65. data/spec/support/logs/Dispatcher - 1962-41002.log +9 -0
  66. data/spec/support/logs/Dispatcher - 1973-27626.log +9 -0
  67. data/spec/support/logs/Dispatcher - 1983-18043.log +11 -0
  68. data/spec/support/logs/Dispatcher - 1996-23139.log +11 -0
  69. data/spec/support/logs/Dispatcher - 2010-10568.log +35 -0
  70. data/spec/support/logs/Dispatcher - 2072-29284.log +21 -0
  71. data/spec/support/logs/Dispatcher - 2081-3234.log +21 -0
  72. data/spec/support/logs/Dispatcher - 2090-18129.log +23 -0
  73. data/spec/support/logs/Dispatcher - 2132-43806.log +19 -0
  74. data/spec/support/logs/Dispatcher - 2141-1327.log +17 -0
  75. data/spec/support/logs/Dispatcher - 2150-52559.log +15 -0
  76. data/spec/support/logs/Dispatcher - 2163-60400.log +11 -0
  77. data/spec/support/logs/Dispatcher - 2176-6021.log +9 -0
  78. data/spec/support/logs/Dispatcher - 2185-22991.log +9 -0
  79. data/spec/support/logs/Dispatcher - 2194-15317.log +9 -0
  80. data/spec/support/logs/Dispatcher - 2203-51674.log +9 -0
  81. data/spec/support/logs/Dispatcher - 2212-25563.log +11 -0
  82. data/spec/support/logs/Dispatcher - 2225-7249.log +9 -0
  83. data/spec/support/logs/Dispatcher - 2234-36714.log +9 -0
  84. data/spec/support/logs/Dispatcher - 2291-34161.log +63 -0
  85. data/spec/support/logs/Dispatcher - 2300-29645.log +43 -0
  86. data/spec/support/logs/Dispatcher - 2309-26961.log +39 -0
  87. data/spec/support/logs/Dispatcher - 2320-25486.log +34 -0
  88. data/spec/support/logs/Dispatcher - 2394-20678.log +28 -0
  89. data/spec/support/logs/Dispatcher - 2409-35315.log +21 -0
  90. data/spec/support/logs/Dispatcher - 2428-13197.log +13 -0
  91. data/spec/support/logs/Dispatcher - 2444-26232.log +9 -0
  92. data/spec/support/logs/Dispatcher - 2573-19232.log +19 -0
  93. data/spec/support/logs/Dispatcher - 2583-26954.log +21 -0
  94. data/spec/support/logs/Dispatcher - 2592-57040.log +15 -0
  95. data/spec/support/logs/Dispatcher - 2606-55321.log +19 -0
  96. data/spec/support/logs/Dispatcher - 2615-56847.log +21 -0
  97. data/spec/support/logs/Dispatcher - 2624-51835.log +15 -0
  98. data/spec/support/logs/Dispatcher - 2745-54916.log +17 -0
  99. data/spec/support/logs/Dispatcher - 2754-32405.log +21 -0
  100. data/spec/support/logs/Dispatcher - 2763-13372.log +13 -0
  101. data/spec/support/logs/Dispatcher - 2776-6861.log +19 -0
  102. data/spec/support/logs/Dispatcher - 2785-19122.log +21 -0
  103. data/spec/support/logs/Dispatcher - 2794-54279.log +15 -0
  104. data/spec/support/logs/Dispatcher - 2847-13871.log +17 -0
  105. data/spec/support/logs/Dispatcher - 2856-56546.log +21 -0
  106. data/spec/support/logs/Dispatcher - 2865-22921.log +13 -0
  107. data/spec/support/logs/Dispatcher - 2878-27922.log +17 -0
  108. data/spec/support/logs/Dispatcher - 2888-5399.log +21 -0
  109. data/spec/support/logs/Dispatcher - 2897-6079.log +13 -0
  110. data/spec/support/logs/Dispatcher - 3129-24131.log +19 -0
  111. data/spec/support/logs/Dispatcher - 3139-17731.log +21 -0
  112. data/spec/support/logs/Dispatcher - 3148-33704.log +15 -0
  113. data/spec/support/logs/Dispatcher - 3172-16517.log +21 -0
  114. data/spec/support/logs/Dispatcher - 3181-26384.log +25 -0
  115. data/spec/support/logs/Dispatcher - 3190-37513.log +15 -0
  116. data/spec/support/logs/Dispatcher - 3232-40996.log +17 -0
  117. data/spec/support/logs/Dispatcher - 3241-14948.log +21 -0
  118. data/spec/support/logs/Dispatcher - 3250-40285.log +13 -0
  119. data/spec/support/logs/Dispatcher - 3263-26987.log +21 -0
  120. data/spec/support/logs/Dispatcher - 3272-2729.log +25 -0
  121. data/spec/support/logs/Dispatcher - 3297-52308.log +15 -0
  122. data/spec/support/logs/Dispatcher - 3335-17008.log +17 -0
  123. data/spec/support/logs/Dispatcher - 3344-33205.log +21 -0
  124. data/spec/support/logs/Dispatcher - 3353-22917.log +13 -0
  125. data/spec/support/logs/Dispatcher - 3367-34935.log +17 -0
  126. data/spec/support/logs/Dispatcher - 3376-35370.log +21 -0
  127. data/spec/support/logs/Dispatcher - 3385-26487.log +13 -0
  128. data/spec/support/logs/Instance - 2588-19460.error.log +314 -0
  129. data/spec/support/logs/Instance - 2861-5917.error.log +314 -0
  130. data/spec/support/logs/Instance - 2893-61274.error.log +413 -0
  131. data/spec/support/logs/Instance - 2913-11030.error.log +312 -0
  132. data/spec/support/logs/Instance - 2919-17549.error.log +314 -0
  133. data/spec/support/logs/Instance - 3054-17565.error.log +312 -0
  134. data/spec/support/servers/modules/audit/file_inclusion.rb +202 -0
  135. data/spec/support/servers/modules/audit/sqli/access +3 -0
  136. data/spec/support/servers/modules/audit/sqli/firebird +1 -0
  137. data/spec/support/servers/modules/audit/sqli/frontbase +1 -0
  138. data/spec/support/servers/modules/audit/sqli/hsqldb +1 -0
  139. data/spec/support/servers/modules/audit/sqli/ingres +3 -0
  140. data/spec/support/servers/modules/audit/sqli/maxdb +2 -0
  141. data/spec/support/servers/modules/audit/sqli/mssql +0 -5
  142. data/spec/support/servers/modules/audit/sqli/oracle +1 -1
  143. data/spec/support/servers/modules/audit/sqli/sybase +3 -0
  144. data/spec/support/servers/modules/recon/localstart_asp.rb +5 -0
  145. data/spec/support/servers/plugins/uncommon_headers.rb +16 -0
  146. metadata +202 -4
  147. data/modules/audit/sqli/regexp_ids.txt +0 -69
  148. data/plugins/redundant_vectors.rb +0 -34
@@ -0,0 +1,13 @@
1
+ [Thu Sep 12 19:39:11 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:39:11 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:39:11 2013] [status] Instance added to pool -- PID: 2435 - Port: 28728 - Owner: dispatcher
4
+ [Thu Sep 12 19:39:11 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:39:11 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:34161
7
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
9
+ [Thu Sep 12 19:39:11 2013] [status] Advertising: localhost:34161
10
+ [Thu Sep 12 19:39:11 2013] [status] Node ready.
11
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
13
+ [Thu Sep 12 19:39:11 2013] [status] Starting the server...
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:39:11 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:39:11 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:39:11 2013] [status] Instance added to pool -- PID: 2465 - Port: 55273 - Owner: dispatcher
4
+ [Thu Sep 12 19:39:11 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:39:11 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:39:11 2013] [status] Node ready.
7
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:39:11 2013] [info] <empty>
9
+ [Thu Sep 12 19:39:11 2013] [status] Starting the server...
@@ -0,0 +1,19 @@
1
+ [Thu Sep 12 19:41:44 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:41:44 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:41:44 2013] [status] Instance added to pool -- PID: 2578 - Port: 48993 - Owner: dispatcher
4
+ [Thu Sep 12 19:41:44 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:41:44 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:41:44 2013] [status] Node ready.
7
+ [Thu Sep 12 19:41:44 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:41:44 2013] [info] <empty>
9
+ [Thu Sep 12 19:41:44 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:41:44 2013] [status] Adding neighbour: localhost:26954
11
+ [Thu Sep 12 19:41:44 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:26954
13
+ [Thu Sep 12 19:41:44 2013] [status] Advertising: localhost:26954
14
+ [Thu Sep 12 19:41:44 2013] [status] Adding neighbour: localhost:57040
15
+ [Thu Sep 12 19:41:44 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:26954
17
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:57040
18
+ [Thu Sep 12 19:41:46 2013] [status] Instance dispatched -- PID: 2578 - Port: 48993 - Owner: localhost:19460
19
+ [Thu Sep 12 19:41:46 2013] [status] Instance added to pool -- PID: 2672 - Port: 59678 - Owner: dispatcher
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:41:44 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:41:44 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:41:44 2013] [status] Instance added to pool -- PID: 2588 - Port: 19460 - Owner: dispatcher
4
+ [Thu Sep 12 19:41:44 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:41:44 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:41:44 2013] [status] Adding neighbour: localhost:19232
7
+ [Thu Sep 12 19:41:44 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:19232
9
+ [Thu Sep 12 19:41:44 2013] [status] Advertising: localhost:19232
10
+ [Thu Sep 12 19:41:44 2013] [status] Node ready.
11
+ [Thu Sep 12 19:41:44 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:19232
13
+ [Thu Sep 12 19:41:44 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:41:44 2013] [status] Adding neighbour: localhost:57040
15
+ [Thu Sep 12 19:41:44 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:19232
17
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:57040
18
+ [Thu Sep 12 19:41:44 2013] [status] Advertising: localhost:57040
19
+ [Thu Sep 12 19:41:44 2013] [info] ---- to: localhost:19232
20
+ [Thu Sep 12 19:41:44 2013] [status] Instance dispatched -- PID: 2588 - Port: 19460 - Owner: unknown
21
+ [Thu Sep 12 19:41:45 2013] [status] Instance added to pool -- PID: 2601 - Port: 34648 - Owner: dispatcher
@@ -0,0 +1,15 @@
1
+ [Thu Sep 12 19:41:44 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:41:44 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:41:44 2013] [status] Instance added to pool -- PID: 2597 - Port: 36160 - Owner: dispatcher
4
+ [Thu Sep 12 19:41:44 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:41:44 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:41:44 2013] [status] Adding neighbour: localhost:26954
7
+ [Thu Sep 12 19:41:44 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:26954
9
+ [Thu Sep 12 19:41:44 2013] [status] Advertising: localhost:26954
10
+ [Thu Sep 12 19:41:44 2013] [status] Node ready.
11
+ [Thu Sep 12 19:41:44 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:41:44 2013] [info] ---- localhost:26954
13
+ [Thu Sep 12 19:41:44 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:41:46 2013] [status] Instance dispatched -- PID: 2597 - Port: 36160 - Owner: localhost:19460
15
+ [Thu Sep 12 19:41:46 2013] [status] Instance added to pool -- PID: 2671 - Port: 27147 - Owner: dispatcher
@@ -0,0 +1,19 @@
1
+ [Thu Sep 12 19:41:45 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:41:45 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:41:45 2013] [status] Instance added to pool -- PID: 2611 - Port: 25869 - Owner: dispatcher
4
+ [Thu Sep 12 19:41:45 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:41:45 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:41:45 2013] [status] Node ready.
7
+ [Thu Sep 12 19:41:45 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:41:45 2013] [info] <empty>
9
+ [Thu Sep 12 19:41:45 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:41:45 2013] [status] Adding neighbour: localhost:56847
11
+ [Thu Sep 12 19:41:45 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:56847
13
+ [Thu Sep 12 19:41:45 2013] [status] Advertising: localhost:56847
14
+ [Thu Sep 12 19:41:45 2013] [status] Adding neighbour: localhost:51835
15
+ [Thu Sep 12 19:41:45 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:56847
17
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:51835
18
+ [Thu Sep 12 19:41:46 2013] [status] Instance dispatched -- PID: 2611 - Port: 25869 - Owner: localhost:30626
19
+ [Thu Sep 12 19:41:46 2013] [status] Instance added to pool -- PID: 2726 - Port: 28846 - Owner: dispatcher
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:41:45 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:41:45 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:41:45 2013] [status] Instance added to pool -- PID: 2620 - Port: 30626 - Owner: dispatcher
4
+ [Thu Sep 12 19:41:45 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:41:45 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:41:45 2013] [status] Adding neighbour: localhost:55321
7
+ [Thu Sep 12 19:41:45 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:55321
9
+ [Thu Sep 12 19:41:45 2013] [status] Advertising: localhost:55321
10
+ [Thu Sep 12 19:41:45 2013] [status] Node ready.
11
+ [Thu Sep 12 19:41:45 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:55321
13
+ [Thu Sep 12 19:41:45 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:41:45 2013] [status] Adding neighbour: localhost:51835
15
+ [Thu Sep 12 19:41:45 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:55321
17
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:51835
18
+ [Thu Sep 12 19:41:45 2013] [status] Advertising: localhost:51835
19
+ [Thu Sep 12 19:41:45 2013] [info] ---- to: localhost:55321
20
+ [Thu Sep 12 19:41:45 2013] [status] Instance dispatched -- PID: 2620 - Port: 30626 - Owner: unknown
21
+ [Thu Sep 12 19:41:45 2013] [status] Instance added to pool -- PID: 2633 - Port: 25756 - Owner: dispatcher
@@ -0,0 +1,15 @@
1
+ [Thu Sep 12 19:41:45 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:41:45 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:41:45 2013] [status] Instance added to pool -- PID: 2629 - Port: 11788 - Owner: dispatcher
4
+ [Thu Sep 12 19:41:45 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:41:45 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:41:45 2013] [status] Adding neighbour: localhost:56847
7
+ [Thu Sep 12 19:41:45 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:56847
9
+ [Thu Sep 12 19:41:45 2013] [status] Advertising: localhost:56847
10
+ [Thu Sep 12 19:41:45 2013] [status] Node ready.
11
+ [Thu Sep 12 19:41:45 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:41:45 2013] [info] ---- localhost:56847
13
+ [Thu Sep 12 19:41:45 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:41:46 2013] [status] Instance dispatched -- PID: 2629 - Port: 11788 - Owner: localhost:30626
15
+ [Thu Sep 12 19:41:46 2013] [status] Instance added to pool -- PID: 2721 - Port: 47337 - Owner: dispatcher
@@ -0,0 +1,17 @@
1
+ [Thu Sep 12 19:42:01 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:01 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:01 2013] [status] Instance added to pool -- PID: 2750 - Port: 64469 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:01 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:01 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:01 2013] [status] Node ready.
7
+ [Thu Sep 12 19:42:01 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:01 2013] [info] <empty>
9
+ [Thu Sep 12 19:42:01 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:42:01 2013] [status] Adding neighbour: localhost:32405
11
+ [Thu Sep 12 19:42:01 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:32405
13
+ [Thu Sep 12 19:42:01 2013] [status] Advertising: localhost:32405
14
+ [Thu Sep 12 19:42:01 2013] [status] Adding neighbour: localhost:13372
15
+ [Thu Sep 12 19:42:01 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:32405
17
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:13372
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:42:01 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:01 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:01 2013] [status] Instance added to pool -- PID: 2759 - Port: 53805 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:01 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:01 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:01 2013] [status] Adding neighbour: localhost:54916
7
+ [Thu Sep 12 19:42:01 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:54916
9
+ [Thu Sep 12 19:42:01 2013] [status] Advertising: localhost:54916
10
+ [Thu Sep 12 19:42:01 2013] [status] Node ready.
11
+ [Thu Sep 12 19:42:01 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:54916
13
+ [Thu Sep 12 19:42:01 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:42:01 2013] [status] Adding neighbour: localhost:13372
15
+ [Thu Sep 12 19:42:01 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:54916
17
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:13372
18
+ [Thu Sep 12 19:42:01 2013] [status] Advertising: localhost:13372
19
+ [Thu Sep 12 19:42:01 2013] [info] ---- to: localhost:54916
20
+ [Thu Sep 12 19:42:01 2013] [status] Instance dispatched -- PID: 2759 - Port: 53805 - Owner: unknown
21
+ [Thu Sep 12 19:42:01 2013] [status] Instance added to pool -- PID: 2772 - Port: 33404 - Owner: dispatcher
@@ -0,0 +1,13 @@
1
+ [Thu Sep 12 19:42:01 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:01 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:01 2013] [status] Instance added to pool -- PID: 2768 - Port: 4917 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:01 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:01 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:01 2013] [status] Adding neighbour: localhost:32405
7
+ [Thu Sep 12 19:42:01 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:32405
9
+ [Thu Sep 12 19:42:01 2013] [status] Advertising: localhost:32405
10
+ [Thu Sep 12 19:42:01 2013] [status] Node ready.
11
+ [Thu Sep 12 19:42:01 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:01 2013] [info] ---- localhost:32405
13
+ [Thu Sep 12 19:42:01 2013] [status] Starting the server...
@@ -0,0 +1,19 @@
1
+ [Thu Sep 12 19:42:03 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:03 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:03 2013] [status] Instance added to pool -- PID: 2781 - Port: 24608 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:03 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:03 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:03 2013] [status] Node ready.
7
+ [Thu Sep 12 19:42:03 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:03 2013] [info] <empty>
9
+ [Thu Sep 12 19:42:03 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:42:03 2013] [status] Adding neighbour: localhost:19122
11
+ [Thu Sep 12 19:42:03 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:19122
13
+ [Thu Sep 12 19:42:03 2013] [status] Advertising: localhost:19122
14
+ [Thu Sep 12 19:42:03 2013] [status] Adding neighbour: localhost:54279
15
+ [Thu Sep 12 19:42:03 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:19122
17
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:54279
18
+ [Thu Sep 12 19:42:07 2013] [status] Instance dispatched -- PID: 2781 - Port: 24608 - Owner: localhost:2006
19
+ [Thu Sep 12 19:42:07 2013] [status] Instance added to pool -- PID: 2830 - Port: 19012 - Owner: dispatcher
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:42:03 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:03 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:03 2013] [status] Instance added to pool -- PID: 2790 - Port: 2006 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:03 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:03 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:03 2013] [status] Adding neighbour: localhost:6861
7
+ [Thu Sep 12 19:42:03 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:6861
9
+ [Thu Sep 12 19:42:03 2013] [status] Advertising: localhost:6861
10
+ [Thu Sep 12 19:42:03 2013] [status] Node ready.
11
+ [Thu Sep 12 19:42:03 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:6861
13
+ [Thu Sep 12 19:42:03 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:42:03 2013] [status] Adding neighbour: localhost:54279
15
+ [Thu Sep 12 19:42:03 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:6861
17
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:54279
18
+ [Thu Sep 12 19:42:03 2013] [status] Advertising: localhost:54279
19
+ [Thu Sep 12 19:42:03 2013] [info] ---- to: localhost:6861
20
+ [Thu Sep 12 19:42:04 2013] [status] Instance dispatched -- PID: 2790 - Port: 2006 - Owner: unknown
21
+ [Thu Sep 12 19:42:04 2013] [status] Instance added to pool -- PID: 2803 - Port: 52439 - Owner: dispatcher
@@ -0,0 +1,15 @@
1
+ [Thu Sep 12 19:42:03 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:03 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:03 2013] [status] Instance added to pool -- PID: 2799 - Port: 62131 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:03 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:03 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:03 2013] [status] Adding neighbour: localhost:19122
7
+ [Thu Sep 12 19:42:03 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:19122
9
+ [Thu Sep 12 19:42:03 2013] [status] Advertising: localhost:19122
10
+ [Thu Sep 12 19:42:03 2013] [status] Node ready.
11
+ [Thu Sep 12 19:42:03 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:03 2013] [info] ---- localhost:19122
13
+ [Thu Sep 12 19:42:03 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:42:07 2013] [status] Instance dispatched -- PID: 2799 - Port: 62131 - Owner: localhost:2006
15
+ [Thu Sep 12 19:42:07 2013] [status] Instance added to pool -- PID: 2831 - Port: 18906 - Owner: dispatcher
@@ -0,0 +1,17 @@
1
+ [Thu Sep 12 19:42:11 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:11 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:11 2013] [status] Instance added to pool -- PID: 2852 - Port: 44774 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:11 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:11 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:11 2013] [status] Node ready.
7
+ [Thu Sep 12 19:42:11 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:11 2013] [info] <empty>
9
+ [Thu Sep 12 19:42:11 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:42:11 2013] [status] Adding neighbour: localhost:56546
11
+ [Thu Sep 12 19:42:11 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:11 2013] [info] ---- localhost:56546
13
+ [Thu Sep 12 19:42:11 2013] [status] Advertising: localhost:56546
14
+ [Thu Sep 12 19:42:12 2013] [status] Adding neighbour: localhost:22921
15
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:56546
17
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:22921
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:42:11 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:11 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:11 2013] [status] Instance added to pool -- PID: 2861 - Port: 5917 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:11 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:11 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:11 2013] [status] Adding neighbour: localhost:13871
7
+ [Thu Sep 12 19:42:11 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:11 2013] [info] ---- localhost:13871
9
+ [Thu Sep 12 19:42:11 2013] [status] Advertising: localhost:13871
10
+ [Thu Sep 12 19:42:11 2013] [status] Node ready.
11
+ [Thu Sep 12 19:42:11 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:11 2013] [info] ---- localhost:13871
13
+ [Thu Sep 12 19:42:11 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:42:12 2013] [status] Adding neighbour: localhost:22921
15
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:13871
17
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:22921
18
+ [Thu Sep 12 19:42:12 2013] [status] Advertising: localhost:22921
19
+ [Thu Sep 12 19:42:12 2013] [info] ---- to: localhost:13871
20
+ [Thu Sep 12 19:42:12 2013] [status] Instance dispatched -- PID: 2861 - Port: 5917 - Owner: unknown
21
+ [Thu Sep 12 19:42:12 2013] [status] Instance added to pool -- PID: 2874 - Port: 42679 - Owner: dispatcher
@@ -0,0 +1,13 @@
1
+ [Thu Sep 12 19:42:12 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:12 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:12 2013] [status] Instance added to pool -- PID: 2870 - Port: 8823 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:12 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:12 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:12 2013] [status] Adding neighbour: localhost:56546
7
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:56546
9
+ [Thu Sep 12 19:42:12 2013] [status] Advertising: localhost:56546
10
+ [Thu Sep 12 19:42:12 2013] [status] Node ready.
11
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:56546
13
+ [Thu Sep 12 19:42:12 2013] [status] Starting the server...
@@ -0,0 +1,17 @@
1
+ [Thu Sep 12 19:42:12 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:12 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:12 2013] [status] Instance added to pool -- PID: 2884 - Port: 24002 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:12 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:12 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:12 2013] [status] Node ready.
7
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:12 2013] [info] <empty>
9
+ [Thu Sep 12 19:42:12 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:42:12 2013] [status] Adding neighbour: localhost:5399
11
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:5399
13
+ [Thu Sep 12 19:42:12 2013] [status] Advertising: localhost:5399
14
+ [Thu Sep 12 19:42:12 2013] [status] Adding neighbour: localhost:6079
15
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:5399
17
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:6079
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:42:12 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:12 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:12 2013] [status] Instance added to pool -- PID: 2893 - Port: 61274 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:12 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:12 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:12 2013] [status] Adding neighbour: localhost:27922
7
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:27922
9
+ [Thu Sep 12 19:42:12 2013] [status] Advertising: localhost:27922
10
+ [Thu Sep 12 19:42:12 2013] [status] Node ready.
11
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:27922
13
+ [Thu Sep 12 19:42:12 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:42:12 2013] [status] Adding neighbour: localhost:6079
15
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:27922
17
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:6079
18
+ [Thu Sep 12 19:42:12 2013] [status] Advertising: localhost:6079
19
+ [Thu Sep 12 19:42:12 2013] [info] ---- to: localhost:27922
20
+ [Thu Sep 12 19:42:12 2013] [status] Instance dispatched -- PID: 2893 - Port: 61274 - Owner: unknown
21
+ [Thu Sep 12 19:42:12 2013] [status] Instance added to pool -- PID: 2906 - Port: 48874 - Owner: dispatcher
@@ -0,0 +1,13 @@
1
+ [Thu Sep 12 19:42:12 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:42:12 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:42:12 2013] [status] Instance added to pool -- PID: 2902 - Port: 48592 - Owner: dispatcher
4
+ [Thu Sep 12 19:42:12 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:42:12 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:42:12 2013] [status] Adding neighbour: localhost:5399
7
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:5399
9
+ [Thu Sep 12 19:42:12 2013] [status] Advertising: localhost:5399
10
+ [Thu Sep 12 19:42:12 2013] [status] Node ready.
11
+ [Thu Sep 12 19:42:12 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:42:12 2013] [info] ---- localhost:5399
13
+ [Thu Sep 12 19:42:12 2013] [status] Starting the server...
@@ -0,0 +1,19 @@
1
+ [Thu Sep 12 19:43:06 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:43:06 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:43:06 2013] [status] Instance added to pool -- PID: 3135 - Port: 42887 - Owner: dispatcher
4
+ [Thu Sep 12 19:43:06 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:43:06 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:43:06 2013] [status] Node ready.
7
+ [Thu Sep 12 19:43:06 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:43:06 2013] [info] <empty>
9
+ [Thu Sep 12 19:43:06 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:43:06 2013] [status] Adding neighbour: localhost:17731
11
+ [Thu Sep 12 19:43:06 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:43:06 2013] [info] ---- localhost:17731
13
+ [Thu Sep 12 19:43:06 2013] [status] Advertising: localhost:17731
14
+ [Thu Sep 12 19:43:07 2013] [status] Adding neighbour: localhost:33704
15
+ [Thu Sep 12 19:43:07 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:43:07 2013] [info] ---- localhost:17731
17
+ [Thu Sep 12 19:43:07 2013] [info] ---- localhost:33704
18
+ [Thu Sep 12 19:43:07 2013] [status] Instance dispatched -- PID: 3135 - Port: 42887 - Owner: localhost:20713
19
+ [Thu Sep 12 19:43:07 2013] [status] Instance added to pool -- PID: 3162 - Port: 43095 - Owner: dispatcher
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:43:06 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:43:06 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:43:06 2013] [status] Instance added to pool -- PID: 3144 - Port: 20713 - Owner: dispatcher
4
+ [Thu Sep 12 19:43:06 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:43:06 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:43:06 2013] [status] Adding neighbour: localhost:24131
7
+ [Thu Sep 12 19:43:06 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:43:06 2013] [info] ---- localhost:24131
9
+ [Thu Sep 12 19:43:06 2013] [status] Advertising: localhost:24131
10
+ [Thu Sep 12 19:43:06 2013] [status] Node ready.
11
+ [Thu Sep 12 19:43:06 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:43:06 2013] [info] ---- localhost:24131
13
+ [Thu Sep 12 19:43:06 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:43:07 2013] [status] Adding neighbour: localhost:33704
15
+ [Thu Sep 12 19:43:07 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:43:07 2013] [info] ---- localhost:24131
17
+ [Thu Sep 12 19:43:07 2013] [info] ---- localhost:33704
18
+ [Thu Sep 12 19:43:07 2013] [status] Advertising: localhost:33704
19
+ [Thu Sep 12 19:43:07 2013] [info] ---- to: localhost:24131
20
+ [Thu Sep 12 19:43:07 2013] [status] Instance dispatched -- PID: 3144 - Port: 20713 - Owner: unknown
21
+ [Thu Sep 12 19:43:07 2013] [status] Instance added to pool -- PID: 3157 - Port: 61933 - Owner: dispatcher
@@ -0,0 +1,15 @@
1
+ [Thu Sep 12 19:43:06 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:43:06 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:43:07 2013] [status] Instance added to pool -- PID: 3153 - Port: 48240 - Owner: dispatcher
4
+ [Thu Sep 12 19:43:07 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:43:07 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:43:07 2013] [status] Adding neighbour: localhost:17731
7
+ [Thu Sep 12 19:43:07 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:43:07 2013] [info] ---- localhost:17731
9
+ [Thu Sep 12 19:43:07 2013] [status] Advertising: localhost:17731
10
+ [Thu Sep 12 19:43:07 2013] [status] Node ready.
11
+ [Thu Sep 12 19:43:07 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:43:07 2013] [info] ---- localhost:17731
13
+ [Thu Sep 12 19:43:07 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:43:07 2013] [status] Instance dispatched -- PID: 3153 - Port: 48240 - Owner: localhost:20713
15
+ [Thu Sep 12 19:43:07 2013] [status] Instance added to pool -- PID: 3163 - Port: 45671 - Owner: dispatcher
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:43:08 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:43:08 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:43:08 2013] [status] Instance added to pool -- PID: 3177 - Port: 34832 - Owner: dispatcher
4
+ [Thu Sep 12 19:43:08 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:43:08 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:43:08 2013] [status] Node ready.
7
+ [Thu Sep 12 19:43:08 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:43:08 2013] [info] <empty>
9
+ [Thu Sep 12 19:43:08 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:43:08 2013] [status] Adding neighbour: localhost:26384
11
+ [Thu Sep 12 19:43:08 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:43:08 2013] [info] ---- localhost:26384
13
+ [Thu Sep 12 19:43:08 2013] [status] Advertising: localhost:26384
14
+ [Thu Sep 12 19:43:08 2013] [status] Adding neighbour: localhost:37513
15
+ [Thu Sep 12 19:43:08 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:43:08 2013] [info] ---- localhost:26384
17
+ [Thu Sep 12 19:43:08 2013] [info] ---- localhost:37513
18
+ [Thu Sep 12 19:43:08 2013] [status] Instance dispatched -- PID: 3177 - Port: 34832 - Owner: localhost:14607
19
+ [Thu Sep 12 19:43:08 2013] [status] Instance added to pool -- PID: 3209 - Port: 46634 - Owner: dispatcher
20
+ [Thu Sep 12 19:43:08 2013] [status] Instance dispatched -- PID: 3209 - Port: 46634 - Owner: localhost:14607
21
+ [Thu Sep 12 19:43:08 2013] [status] Instance added to pool -- PID: 3218 - Port: 46189 - Owner: dispatcher