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,21 @@
1
+ [Thu Sep 12 19:38:42 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:42 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2077 - Port: 57972 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:42 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:42 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:42 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:42 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:42 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:42 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:38:42 2013] [status] Adding neighbour: 127.0.0.2:3234
11
+ [Thu Sep 12 19:38:42 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.2:3234
13
+ [Thu Sep 12 19:38:42 2013] [status] Advertising: 127.0.0.2:3234
14
+ [Thu Sep 12 19:38:42 2013] [status] Adding neighbour: 127.0.0.3:18129
15
+ [Thu Sep 12 19:38:42 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.2:3234
17
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.3:18129
18
+ [Thu Sep 12 19:38:42 2013] [status] Advertising: 127.0.0.3:18129
19
+ [Thu Sep 12 19:38:42 2013] [info] ---- to: 127.0.0.2:3234
20
+ [Thu Sep 12 19:38:42 2013] [status] Instance dispatched -- PID: 2077 - Port: 57972 - Owner: unknown
21
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2111 - Port: 57139 - Owner: dispatcher
@@ -0,0 +1,21 @@
1
+ [Thu Sep 12 19:38:42 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:42 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2086 - Port: 35088 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:42 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:42 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:42 2013] [status] Adding neighbour: 127.0.0.1:29284
7
+ [Thu Sep 12 19:38:42 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.1:29284
9
+ [Thu Sep 12 19:38:42 2013] [status] Advertising: 127.0.0.1:29284
10
+ [Thu Sep 12 19:38:42 2013] [status] Node ready.
11
+ [Thu Sep 12 19:38:42 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.1:29284
13
+ [Thu Sep 12 19:38:42 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:38:42 2013] [status] Adding neighbour: 127.0.0.3:18129
15
+ [Thu Sep 12 19:38:42 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.1:29284
17
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.3:18129
18
+ [Thu Sep 12 19:38:42 2013] [status] Instance dispatched -- PID: 2086 - Port: 35088 - Owner: unknown
19
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2103 - Port: 3967 - Owner: dispatcher
20
+ [Thu Sep 12 19:38:42 2013] [status] Instance dispatched -- PID: 2103 - Port: 3967 - Owner: unknown
21
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2119 - Port: 15276 - Owner: dispatcher
@@ -0,0 +1,23 @@
1
+ [Thu Sep 12 19:38:42 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:42 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2095 - Port: 40042 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:42 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:42 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:42 2013] [status] Adding neighbour: 127.0.0.1:29284
7
+ [Thu Sep 12 19:38:42 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.1:29284
9
+ [Thu Sep 12 19:38:42 2013] [status] Advertising: 127.0.0.1:29284
10
+ [Thu Sep 12 19:38:42 2013] [status] Node ready.
11
+ [Thu Sep 12 19:38:42 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:42 2013] [info] ---- 127.0.0.1:29284
13
+ [Thu Sep 12 19:38:42 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:38:42 2013] [status] Instance dispatched -- PID: 2095 - Port: 40042 - Owner: unknown
15
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2099 - Port: 34748 - Owner: dispatcher
16
+ [Thu Sep 12 19:38:42 2013] [status] Instance dispatched -- PID: 2099 - Port: 34748 - Owner: unknown
17
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2107 - Port: 22014 - Owner: dispatcher
18
+ [Thu Sep 12 19:38:42 2013] [status] Instance dispatched -- PID: 2107 - Port: 22014 - Owner: unknown
19
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2115 - Port: 62644 - Owner: dispatcher
20
+ [Thu Sep 12 19:38:42 2013] [status] Instance dispatched -- PID: 2115 - Port: 62644 - Owner: unknown
21
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2123 - Port: 10444 - Owner: dispatcher
22
+ [Thu Sep 12 19:38:42 2013] [status] Instance dispatched -- PID: 2123 - Port: 10444 - Owner: unknown
23
+ [Thu Sep 12 19:38:42 2013] [status] Instance added to pool -- PID: 2127 - Port: 4774 - Owner: dispatcher
@@ -0,0 +1,19 @@
1
+ [Thu Sep 12 19:38:44 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:44 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:44 2013] [status] Instance added to pool -- PID: 2137 - Port: 49286 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:44 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:44 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:44 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:44 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:44 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:44 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:38:44 2013] [status] Adding neighbour: 127.0.0.2:1327
11
+ [Thu Sep 12 19:38:44 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.2:1327
13
+ [Thu Sep 12 19:38:44 2013] [status] Advertising: 127.0.0.2:1327
14
+ [Thu Sep 12 19:38:44 2013] [status] Adding neighbour: 127.0.0.3:52559
15
+ [Thu Sep 12 19:38:44 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.2:1327
17
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.3:52559
18
+ [Thu Sep 12 19:38:44 2013] [status] Advertising: 127.0.0.3:52559
19
+ [Thu Sep 12 19:38:44 2013] [info] ---- to: 127.0.0.2:1327
@@ -0,0 +1,17 @@
1
+ [Thu Sep 12 19:38:44 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:44 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:44 2013] [status] Instance added to pool -- PID: 2146 - Port: 10262 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:44 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:44 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:44 2013] [status] Adding neighbour: 127.0.0.1:43806
7
+ [Thu Sep 12 19:38:44 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.1:43806
9
+ [Thu Sep 12 19:38:44 2013] [status] Advertising: 127.0.0.1:43806
10
+ [Thu Sep 12 19:38:44 2013] [status] Node ready.
11
+ [Thu Sep 12 19:38:44 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.1:43806
13
+ [Thu Sep 12 19:38:44 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:38:44 2013] [status] Adding neighbour: 127.0.0.3:52559
15
+ [Thu Sep 12 19:38:44 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.1:43806
17
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.3:52559
@@ -0,0 +1,15 @@
1
+ [Thu Sep 12 19:38:44 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:44 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:44 2013] [status] Instance added to pool -- PID: 2155 - Port: 4864 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:44 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:44 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:44 2013] [status] Adding neighbour: 127.0.0.1:43806
7
+ [Thu Sep 12 19:38:44 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.1:43806
9
+ [Thu Sep 12 19:38:44 2013] [status] Advertising: 127.0.0.1:43806
10
+ [Thu Sep 12 19:38:44 2013] [status] Node ready.
11
+ [Thu Sep 12 19:38:44 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:38:44 2013] [info] ---- 127.0.0.1:43806
13
+ [Thu Sep 12 19:38:44 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:38:44 2013] [status] Instance dispatched -- PID: 2155 - Port: 4864 - Owner:
15
+ [Thu Sep 12 19:38:44 2013] [status] Instance added to pool -- PID: 2159 - Port: 5405 - Owner: dispatcher
@@ -0,0 +1,11 @@
1
+ [Thu Sep 12 19:38:45 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:45 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:45 2013] [status] Instance added to pool -- PID: 2168 - Port: 3853 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:45 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:45 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:45 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:45 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:45 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:45 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:38:45 2013] [status] Instance dispatched -- PID: 2168 - Port: 3853 - Owner: unknown
11
+ [Thu Sep 12 19:38:45 2013] [status] Instance added to pool -- PID: 2172 - Port: 57119 - Owner: dispatcher
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:45 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:45 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:45 2013] [status] Instance added to pool -- PID: 2181 - Port: 39872 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:45 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:45 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:45 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:45 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:45 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:45 2013] [status] Starting the server...
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:46 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:46 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:46 2013] [status] Instance added to pool -- PID: 2190 - Port: 10165 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:46 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:46 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:46 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:46 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:46 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:46 2013] [status] Starting the server...
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:46 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:46 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:46 2013] [status] Instance added to pool -- PID: 2199 - Port: 56750 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:46 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:46 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:46 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:46 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:46 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:46 2013] [status] Starting the server...
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:46 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:46 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:46 2013] [status] Instance added to pool -- PID: 2208 - Port: 35122 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:46 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:46 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:46 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:46 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:46 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:46 2013] [status] Starting the server...
@@ -0,0 +1,11 @@
1
+ [Thu Sep 12 19:38:47 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:47 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:47 2013] [status] Instance added to pool -- PID: 2217 - Port: 58278 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:47 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:47 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:47 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:47 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:47 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:47 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:38:47 2013] [status] Instance dispatched -- PID: 2217 - Port: 58278 - Owner: unknown
11
+ [Thu Sep 12 19:38:47 2013] [status] Instance added to pool -- PID: 2221 - Port: 33034 - Owner: dispatcher
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:47 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:47 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:47 2013] [status] Instance added to pool -- PID: 2230 - Port: 2275 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:47 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:47 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:47 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:47 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:47 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:47 2013] [status] Starting the server...
@@ -0,0 +1,9 @@
1
+ [Thu Sep 12 19:38:47 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:38:48 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:38:48 2013] [status] Instance added to pool -- PID: 2239 - Port: 15333 - Owner: dispatcher
4
+ [Thu Sep 12 19:38:48 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:38:48 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:38:48 2013] [status] Node ready.
7
+ [Thu Sep 12 19:38:48 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:38:48 2013] [info] <empty>
9
+ [Thu Sep 12 19:38:48 2013] [status] Starting the server...
@@ -0,0 +1,63 @@
1
+ [Thu Sep 12 19:39:10 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:39:10 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:39:10 2013] [status] Instance added to pool -- PID: 2296 - Port: 23453 - Owner: dispatcher
4
+ [Thu Sep 12 19:39:10 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:39:10 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:39:10 2013] [status] Node ready.
7
+ [Thu Sep 12 19:39:10 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:39:10 2013] [info] <empty>
9
+ [Thu Sep 12 19:39:10 2013] [status] Starting the server...
10
+ [Thu Sep 12 19:39:10 2013] [status] Adding neighbour: localhost:29645
11
+ [Thu Sep 12 19:39:10 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:39:10 2013] [info] ---- localhost:29645
13
+ [Thu Sep 12 19:39:10 2013] [status] Advertising: localhost:29645
14
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:26961
15
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
17
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
18
+ [Thu Sep 12 19:39:11 2013] [status] Advertising: localhost:26961
19
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:29645
20
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:25486
21
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
22
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
23
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
24
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
25
+ [Thu Sep 12 19:39:11 2013] [status] Advertising: localhost:25486
26
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:29645
27
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:26961
28
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:20678
29
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
30
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
31
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
32
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
33
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
34
+ [Thu Sep 12 19:39:11 2013] [status] Advertising: localhost:20678
35
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:29645
36
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:26961
37
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:25486
38
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:35315
39
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
40
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
41
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
42
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
43
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
44
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
45
+ [Thu Sep 12 19:39:11 2013] [status] Advertising: localhost:35315
46
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:29645
47
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:26961
48
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:25486
49
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:20678
50
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:13197
51
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
52
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
53
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
54
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
55
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
56
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
57
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:13197
58
+ [Thu Sep 12 19:39:11 2013] [status] Advertising: localhost:13197
59
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:29645
60
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:26961
61
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:25486
62
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:20678
63
+ [Thu Sep 12 19:39:11 2013] [info] ---- to: localhost:35315
@@ -0,0 +1,43 @@
1
+ [Thu Sep 12 19:39:10 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:39:10 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:39:10 2013] [status] Instance added to pool -- PID: 2305 - Port: 56909 - Owner: dispatcher
4
+ [Thu Sep 12 19:39:10 2013] [status] Initialization complete.
5
+ [Thu Sep 12 19:39:10 2013] [status] Initing grid node...
6
+ [Thu Sep 12 19:39:10 2013] [status] Adding neighbour: localhost:34161
7
+ [Thu Sep 12 19:39:10 2013] [info] Updated neighbours:
8
+ [Thu Sep 12 19:39:10 2013] [info] ---- localhost:34161
9
+ [Thu Sep 12 19:39:10 2013] [status] Advertising: localhost:34161
10
+ [Thu Sep 12 19:39:10 2013] [status] Node ready.
11
+ [Thu Sep 12 19:39:10 2013] [info] Updated neighbours:
12
+ [Thu Sep 12 19:39:10 2013] [info] ---- localhost:34161
13
+ [Thu Sep 12 19:39:10 2013] [status] Starting the server...
14
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:26961
15
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
17
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
18
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:25486
19
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
20
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
21
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
22
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
23
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:20678
24
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
25
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
26
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
27
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
28
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
29
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:35315
30
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
31
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
32
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
33
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
34
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
35
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
36
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:13197
37
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
38
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
39
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
40
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
41
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
42
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
43
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:13197
@@ -0,0 +1,39 @@
1
+ [Thu Sep 12 19:39:10 2013] [status] Initing RPC Server...
2
+ [Thu Sep 12 19:39:10 2013] [status] Warming up the pool...
3
+ [Thu Sep 12 19:39:11 2013] [status] Instance added to pool -- PID: 2314 - Port: 63081 - 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...
14
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:25486
15
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
17
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
18
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
19
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:20678
20
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
21
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
22
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
23
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
24
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
25
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:35315
26
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
27
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
28
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
29
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
30
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
31
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
32
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:13197
33
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
34
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
35
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
36
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
37
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
38
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
39
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:13197
@@ -0,0 +1,34 @@
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: 2389 - Port: 1896 - 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...
14
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:20678
15
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
17
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
18
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
19
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
20
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:35315
21
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
22
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
23
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
24
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
25
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
26
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
27
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:13197
28
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
29
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
30
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
31
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
32
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
33
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
34
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:13197
@@ -0,0 +1,28 @@
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: 2399 - Port: 2043 - 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...
14
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:35315
15
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
17
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
18
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
19
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
20
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
21
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:13197
22
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
23
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
24
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
25
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
26
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
27
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:35315
28
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:13197
@@ -0,0 +1,21 @@
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: 2423 - Port: 17175 - 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...
14
+ [Thu Sep 12 19:39:11 2013] [status] Adding neighbour: localhost:13197
15
+ [Thu Sep 12 19:39:11 2013] [info] Updated neighbours:
16
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:34161
17
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:29645
18
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:26961
19
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:25486
20
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:20678
21
+ [Thu Sep 12 19:39:11 2013] [info] ---- localhost:13197