找回密码
 新注册用户
搜索
查看: 8313|回复: 10

[求助] 呼叫高手编译langouste3-15.20代理程序(修订版)

[复制链接]
发表于 2013-12-9 09:39:34 | 显示全部楼层 |阅读模式
本帖最后由 金鹏 于 2014-3-28 14:56 编辑

Native Folding Image 1.34镜像下对网络支持一直不好,为了更好的使用内置的langouste3代理程序提高传输稳定性和速率,需要把论坛原xiaoren6412兄弟编译过的    langouste3-0.15.8.3升级到langouste3-15.18版本
(修订了15.17中不能刷新queue.dat信息造成(如FAHSPY)读取包编号错乱的BUG)
It works around Folding@Home bug that can, under certain conditions, prevent the client from retrieving WUs until queue.dat file is removed or client is uninstalled and reinstalled again


新的15.20版本出来了
langouste3-15.20.zip (108.58 KB, 下载次数: 0)
是未编译过的,需要高手编译后供兄弟们替换老版本
@cuda   @xiaoren6412

Pull from http://darkswarm.org/langouste3/langouste3-15.18.zip  or   http://darkswarm.org/langouste3/langouste3-15.18.tar.gz


Change log (since first official release):
2013-12-13 -- New release (langouste3-15.18)
-- works around FAH problem that could, under certain conditions,
  prevent WUs from being assigned
Change log (since first official release):
2013-11-25 -- New release (langouste3-15.17)
-- Linux: fixes a bug that could, under very specific circumstances
  cause multiple helpers to be launched at WU upload attempts


  1. $ cat README.txt

  2. Contents:
  3. 0. License
  4. 1. What does Langouste do?
  5. 2. How is Langouste useful?
  6. 3. Supported configurations (PLEASE READ!)
  7. 4. Linux information
  8. 4.1. Building Langouste
  9. 4.2. Using Langouste
  10. 4.3. Upgrading Langouste
  11. 4.4. How do I know it's working?
  12. 5. Windows information
  13. 5.1. Using Langouste
  14. 5.2. Upgrading Langouste
  15. 5.3. How do I know it's working?
  16. 6. Rate limiting (upload capping) feature
  17. 6.1. Rate limiting with decoupling (1 Langouste per machine)
  18. 7. Known issues and caveats
  19. 8. Support
  20. 9. Credits



  21. 0. License

  22.   Langouste is licensed under GNU General Public License version 2.
  23.   See COPYING.txt for details.



  24. 1. What does Langouste do?

  25.   Upon client's attempt to contact collection server (with a WU to return)
  26.   it forks a copy of the client (in temporary directory) with -send
  27.   parameter and terminates connection "original" client was attempting to
  28.   make. If forked client is able to send data back, corresponding
  29.   wuresults_*.dat file is wiped from original client's work directory
  30.   (so original client's autosend bails out and removes it from queue).



  31. 2. How is Langouste useful?

  32.   Its intended purpose is to make WU download and return processes
  33.   asynchronous (in other words to enable simultaneous downloads and uploads).

  34.   Processed SMP and SMP -bigadv WUs are usually large (25-100MB).  When WU
  35.   processing is complete client sends back the results but new WU is not
  36.   retrieved until after upload is complete.

  37.   On relatively fast links (1Mbit up) bigadv upload takes ~12 minutes (+5
  38.   extra minutes of FAH client/server processing).
  39.   Moreover, due to client deficiencies (see
  40.   http://foldingforum.org/viewtopic.php?f=44&t=10615) results file cleaning
  41.   takes additional time (depending on underlying filesystem -- between
  42.   several and 20+ minutes).

  43.   As Langouste decouples upload and download processes a new WU can be
  44.   downloaded while WU upload continues in background thus saving time.
  45.   Time that can be spent on simulation.



  46. 3. Supported configurations (PLEASE READ!)

  47.   Langouste is supported on modern Linux distributions running Folding@Home
  48.   clients 6.02 (32-bit) and 6.34 (64-bit).

  49.   Langouste is also supported on 32- and 64-bit Windows running
  50.   Folding@Home clients (console, console+GPU, console+SMP, systray, systray+GPU)
  51.   6.23, 6.30, 6.41, _not_ in service mode.

  52.   Minimal requirement is Windows XP with Service Pack 2. Windows Vista and 7
  53.   are also supported.



  54. 4. Linux information

  55. 4.1. Building Langouste

  56.     1. Make sure gcc, make and appropriate development packages are installed
  57.     2. Run 'make'
  58.     3. Run 'sudo make install' or otherwise run 'make install' as root.

  59.        Langouste installs documentation, helper script and rudimentary
  60.        SysV initscript to  /usr/share/langouste3/. Sample configuration
  61.        file is installed to /etc/langouste3/.



  62. 4.2. Using Langouste

  63.     1. Copy helper script (from /usr/share/langouste3/) to FAH client's
  64.        directory
  65.     2. Pick a non-used port for Langouste to use (I use 8880)
  66.     3. Start Langouste*,**,***: 'langouste3 -l port-from-step-2'
  67.     4. Reconfigure FAH client (-config or -configonly)
  68.         - set proxy host to 127.0.0.1 (do not leave 'localhost' there)
  69.         - set proxy port to port from step 2****
  70.     5. Enjoy

  71.     *) if you wish to run Langouste in the backgound (otherwise you need
  72.        to keep Langouste terminal window open at all times) add -D option
  73.        to Langouste's command line, e.g. langouste3 -l port-from-step-2 -D

  74.    **) it is  _critical_ Langouste is run as the same user as FAH client(s)
  75.        (it has no effect otherwise)

  76.   ***) Langouste also supports reading configuration from a file -- use
  77.        '-c' option to specify a file; for configuration options see
  78.        langouste.conf.example (located in /etc/langouste3/ after installation)

  79. ****) Langouste is designed to handle multiple clients (on same machine) --
  80.        running single instance is good enough



  81. 4.3. Upgrading Langouste

  82.     1. Build and install Langouste per 4.1.
  83.     2. Pick a time when FAH client is not sending or receiving data (shutting
  84.        client down is not necessary)
  85.     3. Terminate existing instance of Langouste
  86.     4. Start new instance of Langouste
  87.     5. Copy new helper script (from /usr/share/langouste3/) to FAH client
  88.        directory
  89.     6. Remove old Langouste directory/binary (for safety)



  90. 4.4. How do I know it's working?

  91.   First off, even if you intend to run Langouste as a daemon (in the
  92.   background) running it in the foreground for a while is recommended (just
  93.   to make sure things work as expected).

  94.   Anyway, the easiest way is to examine forked client's log at (or after)
  95.   the time WU is returned (/tmp/langouste directory). See reference log
  96.   in dist/linux/reflogs/ directory.

  97.   Langouste terminal output follows (informative).

  98.   Client (PID 11899) attempts to return a WU but initial connection
  99.   is terminated and a new client instance (set up to return the WU) is forked
  100.   (via helper script -- PID 11982):

  101.     Thu Jun  6 00:45:00 2013 Accepted connection from 127.0.0.1:53282
  102.     Thu Jun  6 00:45:00 2013 PID for socket: 11899
  103.     Thu Jun  6 00:45:00 2013 PID 11899: issending: 0
  104.     Thu Jun  6 00:45:00 2013 (0) Connection from 127.0.0.1:53282 -- slot 0
  105.     Thu Jun  6 00:45:00 2013 (0) [FAH] PID 11899 is most likely contacting WU server, content length: 91590673
  106.     Thu Jun  6 00:45:00 2013 (0) [FAH] Helper pid: -1
  107.     Thu Jun  6 00:45:00 2013 (0) [FAH] PID 11899: numcores: 0
  108.     Thu Jun  6 00:45:00 2013 (0) [FAH] now: 1370501100, last helper launched at: 0
  109.     Thu Jun  6 00:45:00 2013 (0) [FAH] Launching helper: '/proc/11899/cwd/langouste-helper.sh' (exe name: '/home/folding/fah/fah6')...
  110.     Thu Jun  6 00:45:00 2013 (0) [FAH] Forked 11982
  111.     Thu Jun  6 00:45:00 2013 (0) Local: received 16384 bytes, sent 0 bytes


  112.   Helper output (normally mixed with Langouste output in the terminal -- not logged):

  113.     DIRNAME: /proc/11899/cwd
  114.     READLINK: /home/folding/fah
  115.     BASENAME: langouste-helper.sh
  116.     /proc/11899/cwd/langouste-helper.sh: launching asynchronous part, using /home/folding/fah/langouste-helper.sh


  117.   As original client doesn't know we're doing anything in the background,
  118.   it continues (for a while) its WU return attempts, which are repeatedly
  119.   denied by Langouste -- we see the following sequence several times:

  120.     Thu Jun  6 00:45:00 2013 Accepted connection from 127.0.0.1:53283
  121.     Thu Jun  6 00:45:00 2013 PID for socket: 11899
  122.     Thu Jun  6 00:45:00 2013 PID 11899: issending: 0
  123.     Thu Jun  6 00:45:00 2013 (0) Connection from 127.0.0.1:53283 -- slot 0
  124.     Thu Jun  6 00:45:00 2013 (0) [FAH] PID 11899 is most likely contacting WU server, content length: 91590673
  125.     Thu Jun  6 00:45:00 2013 (0) [FAH] Helper pid: -1
  126.     Thu Jun  6 00:45:00 2013 (0) [FAH] PID 11899: numcores: 0
  127.     Thu Jun  6 00:45:00 2013 (0) [FAH] now: 1370501100, last helper launched at: 1370501100
  128.     Thu Jun  6 00:45:00 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  129.     Thu Jun  6 00:45:00 2013 (0) Local: received 16384 bytes, sent 0 bytes


  130.   Eventually, original client gives up WU return attempts and initiates
  131.   download of a new WU:

  132.     Thu Jun  6 00:45:00 2013 Accepted connection from 127.0.0.1:53288
  133.     Thu Jun  6 00:45:00 2013 PID for socket: 11899
  134.     Thu Jun  6 00:45:00 2013 PID 11899: issending: 0
  135.     Thu Jun  6 00:45:00 2013 (0) Connection from 127.0.0.1:53288 -- slot 0
  136.     Thu Jun  6 00:45:00 2013 (0) [FAH] PID 11899 is contacting main assignment server
  137.     Thu Jun  6 00:45:00 2013 (0) resolving 'assign.stanford.edu:8080'
  138.     Thu Jun  6 00:45:00 2013 (0) Connecting to: 171.67.108.200:8080
  139.     Thu Jun  6 00:45:00 2013 (0) Connected.
  140.     Thu Jun  6 00:45:00 2013 (0) Local connection closed (bsize: 0).
  141.     Thu Jun  6 00:45:00 2013 (0) Local: received 559 bytes, sent 396 bytes
  142.     Thu Jun  6 00:45:00 2013 (0) Remote: received 396 bytes, sent 559 bytes
  143.     Thu Jun  6 00:45:01 2013 Accepted connection from 127.0.0.1:53290
  144.     Thu Jun  6 00:45:01 2013 PID for socket: 11899
  145.     Thu Jun  6 00:45:01 2013 PID 11899: issending: 0
  146.     Thu Jun  6 00:45:01 2013 (0) Connection from 127.0.0.1:53290 -- slot 0
  147.     Thu Jun  6 00:45:01 2013 (0) [FAH] PID 11899 is most likely contacting WU server, content length: 512
  148.     Thu Jun  6 00:45:01 2013 (0) resolving '128.143.231.201:8080'
  149.     Thu Jun  6 00:45:01 2013 (0) Connecting to: 128.143.231.201:8080
  150.     Thu Jun  6 00:45:01 2013 (0) Connected.


  151.   One minute after first WU return attempt the forked (background) client
  152.   kicks in:

  153.     Thu Jun  6 00:46:00 2013 Accepted connection from 127.0.0.1:54401
  154.     Thu Jun  6 00:46:00 2013 PID for socket: 12011
  155.     Thu Jun  6 00:46:00 2013 PID 12011: issending: 1
  156.     Thu Jun  6 00:46:00 2013 (1) Connection from 127.0.0.1:54401 -- slot 1
  157.     Thu Jun  6 00:46:00 2013 (1) [FAH] PID -1 is most likely contacting WU server, content length: 91590673
  158.     Thu Jun  6 00:46:00 2013 (1) resolving '128.143.231.201:8080'
  159.     Thu Jun  6 00:46:00 2013 (1) Connecting to: 128.143.231.201:8080
  160.     Thu Jun  6 00:46:01 2013 (1) Connected.


  161.   Original client completes download of new WU:

  162.     Thu Jun  6 00:48:08 2013 (0) Remote connection closed (rbsize: 0).
  163.     Thu Jun  6 00:48:08 2013 (0) Local: received 631 bytes, sent 30348818 bytes
  164.     Thu Jun  6 00:48:08 2013 (0) Remote: received 30348818 bytes, sent 631 bytes


  165.   And, again, tries to return the WU (the one that's already being handled
  166.   by the forked client) several times.

  167.     Thu Jun  6 00:48:08 2013 Accepted connection from 127.0.0.1:53292
  168.     Thu Jun  6 00:48:08 2013 PID for socket: 11899
  169.     Thu Jun  6 00:48:08 2013 PID 11899: issending: 0
  170.     Thu Jun  6 00:48:08 2013 (0) Connection from 127.0.0.1:53292 -- slot 0
  171.     Thu Jun  6 00:48:08 2013 (0) [FAH] PID 11899 is most likely contacting WU server, content length: 91590673
  172.     Thu Jun  6 00:48:08 2013 (0) [FAH] Helper pid: 12011
  173.     Thu Jun  6 00:48:08 2013 (0) [FAH] PID 11899: numcores: 0
  174.     Thu Jun  6 00:48:08 2013 (0) [FAH] Helper (pid 12011) already running
  175.     Thu Jun  6 00:48:08 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  176.     Thu Jun  6 00:48:08 2013 (0) Local: received 16384 bytes, sent 0 bytes


  177.   Finally, forked (background) client completes the upload:

  178.     Thu Jun  6 00:52:22 2013 (1) Complete request sent.
  179.     Thu Jun  6 00:52:22 2013 (1) Remote connection closed (rbsize: 0).
  180.     Thu Jun  6 00:52:22 2013 (1) Local: received 91590797 bytes, sent 634 bytes
  181.     Thu Jun  6 00:52:22 2013 (1) Remote: received 634 bytes, sent 91590797 bytes
  182.     Thu Jun  6 00:52:22 2013 (1) Ratelimit: sent 91590797 byte(s) in 381.824 seconds, 239877 Bps (234.25 kBps)



  183. 5. Windows information

  184. 5.1. Using Langouste

  185.     1. Unzip Langouste archive
  186.     2. Copy helper batch file (from dist\win32\ directory) to FAH client's
  187.        directory (console) or, if using systray client, to Folding@Home data
  188.        files directory
  189.     3. Pick a non-used port for Langouste to use (I use 8880)
  190.     4. Start cmd.exe
  191.     5. Change directory to dist\win32\ subdirectory of the unzipped archive
  192.     6. Start Langouste*,**,***: langouste3-15.10.exe -l port-from-step-3
  193.     7. Reconfigure FAH client:
  194.         - set proxy host to 127.0.0.1 (do not leave 'localhost' there)
  195.         - set proxy port to port from step 3****
  196.     8. Enjoy

  197.     *) it is  _critical_ Langouste is run as the same user as FAH client(s)
  198.        (it has no effect otherwise)

  199.    **) Langouste also supports reading configuration from a file -- use
  200.        '-c' option to specify a file; for configuration options see
  201.        langouste.conf.example (located in dist/)

  202.   ***) Langouste also supports reading configuration from a file -- use
  203.        '-c' option to specify a file; for configuration options see
  204.        langouste.conf.example (located in dist\ directory)

  205. ****) Langouste is designed to handle multiple clients (on same machine) --
  206.        running single instance is good enough



  207. 5.2. Upgrading Langouste

  208.     0. Pick a time when FAH client is not sending or receiving data (shutting
  209.        client down is not necessary)
  210.     1. Terminate existing instance of Langouste with Control+C
  211.     2. Start new instance of Langouste
  212.     3. Copy new helper script (from dist\win32\ directory) to FAH client
  213.        directory (console) or, if using systray client, to Folding@Home data
  214.        files directory
  215.     4. Remove old Langouste directory/binary (for safety)



  216. 5.3. How do I know it's working?

  217.     This section is yet to be written. For now, see reference FAH client,
  218.     Langouste and Langouste helper logs (captured with version 0.14.1)
  219.     in dist\win32\reflogs\ (courtesy of DonMarkoni).



  220. 6. Rate limiting (upload capping) feature

  221.   Langouste releases 0.15 and later come with a feature that enables user
  222.   to limit upload rates.

  223.   Capping uploads to as much as 90% of upstream bandwith makes heaven and
  224.   earth difference with interactive sessions (ssh et al.) and regular "web
  225.   browsing" too -- DNS queries and TCP ACKs require a bit of (ideally
  226.   low-latency) upstream bandwidth.



  227. 6.1. Rate limiting with decoupling (1 Langouste per machine)

  228.   How to? Just add -r <rate-in-bytes-per-second> parameter to you current
  229.   command line; see following example (and terminal log):

  230.     $ langouste3 -l 8880 -r 240000
  231.     Thu Jun  6 00:40:59 2013 Langouste3 15.9 (compiled Thu Jun  6 00:40:52 MDT 2013 by folding@goldfinger)
  232.     Thu Jun  6 00:40:59 2013 Langouste3 comes with ABSOLUTELY NO WARRANTY; for details
  233.     Thu Jun  6 00:40:59 2013 see `COPYING.txt' file located in source directory
  234.     Thu Jun  6 00:40:59 2013 Default Langouste helper temp directory: /tmp/langouste-kszysiu/
  235.     Thu Jun  6 00:40:59 2013 Ratelimit: Output rate: 240000 bytes/s (234.37 kBps)
  236.     Thu Jun  6 00:40:59 2013 Listening on 127.0.0.1:8880
  237.     (...)
  238.     Thu Jun  6 00:52:22 2013 (1) Ratelimit: sent 91590797 byte(s) in 381.824 seconds, 239877 Bps (234.25 kBps)


  239.   IMPORTANT CAVEAT: multiple machines in the same network won't know about
  240.                     others' existence;
  241.                     two (or more) machines returning WUs simultaneously may
  242.                     (and normally will) exceed limits imposed on any single
  243.                     machine;
  244.                     on the other hand, turnaround time of SMP and SMP bigadv
  245.                     WUs is fairly long so probability of such "clash" isn't
  246.                     really very high



  247. 7. Known issues and caveats

  248.     I-1. Using Langouste results in local WU count not being updated; note
  249.          that Stanford statistics are _not_ affected by this issue.

  250.          Report: http://foldingforum.org/viewtopic.php?f=14&t=11615&start=30#p125534

  251.          Comments: updating local WU count is tricky and possible
  252.                    solutions are prone to variety of race-conditions;
  253.                    I'm currently reluctant to resolving the issue
  254.                    at the cost of reliability



  255. 8. Support

  256.     Using foldingforum.org is recommended. Please post in this thread:

  257.     http://foldingforum.org/viewtopic.php?f=14&t=11615



  258. 9. Credits

  259.     Langouste was written and is maintained by Kris Rusocki <kszysiu@gmail.com>

  260.     Special thanks go to:

  261.    #area51 crew -- for ideas, test feedback and more
  262.          (esp. firedfly for CMD scripting assistance)

  263.         Punchy -- for a great deal of troubleshooting assistance, resolving
  264.                   Langouste's issues on SLES 10 and excellent Windows port
  265.                   alpha-test feedback
  266.         
  267.         pholcman -- for excellent feedback on rate limiting feature and
  268.                     general troubleshooting assistance (esp. case with
  269.                     Langouste residing on other-than-system volume)

  270.         DonMarkoni -- for excellent Windows port alpha-test feedback
  271.         metal03326 -- for excellent Windows port alpha-test feedback

  272.         Blasphemous Cannibal -- for extraordinary amount of persistence
  273.                                 while troubleshooting "infinite loop" issue

  274.         Hyperlife -- for help with IPv6 localhost name resolution issue
复制代码
回复

使用道具 举报

发表于 2013-12-9 14:31:28 | 显示全部楼层
先用tar解压,然后直接输入make即可编译。
我编译了一个,不过编译过程中有一些警告,看看能不能用?
langouste3.rar (27.83 KB, 下载次数: 1952)

评分

参与人数 1基本分 +8 收起 理由
金鹏 + 8 辛苦了!

查看全部评分

回复

使用道具 举报

 楼主| 发表于 2013-12-9 16:28:30 | 显示全部楼层
本帖最后由 金鹏 于 2013-12-10 09:20 编辑
cuda 发表于 2013-12-9 14:31
先用tar解压,然后直接输入make即可编译。
我编译了一个,不过编译过程中有一些警告,看看能不能用?

已经替换老版本,上传下载基本正常
已添加进高端台机/中低端双路及以上机器跑BIGADV包提升PPD技巧汇总

捕获.PNG
  1. Mon Dec 9 12:32:36 2013 Langouste3 15.17 (compiled Mon Dec 9 14:24:53 CST 2013 by root@pc1)
  2. Mon Dec 9 12:32:36 2013 Langouste3 comes with ABSOLUTELY NO WARRANTY; for details
  3. Mon Dec 9 12:32:36 2013 see `COPYING.txt' file located in source directory
  4. Mon Dec 9 12:32:36 2013 Logging to /usr/local/fah/langouste.log
  5. Mon Dec 9 12:32:36 2013 Listening on 127.0.0.1:8080
  6. Mon Dec 9 12:32:36 2013 Default Langouste helper temp directory: /dev/shm/langouste-root/
  7. Mon Dec 9 12:32:36 2013 Going into background...
  8. Mon Dec 9 12:32:51 2013 Accepted connection from 127.0.0.1:52226
  9. Mon Dec 9 12:32:51 2013 PID for socket: 760
  10. Mon Dec 9 12:32:51 2013 PID 760: issending: 0
  11. Mon Dec 9 12:32:51 2013 (0) Connection from 127.0.0.1:52226 -- slot 0
  12. Mon Dec 9 12:32:51 2013 (0) [FAH] PID 760 is contacting main assignment server
  13. Mon Dec 9 12:32:51 2013 (0) resolving 'assign.stanford.edu:8080'
  14. Mon Dec 9 12:32:52 2013 (0) Connecting to: 171.67.108.200:8080
  15. Mon Dec 9 12:32:52 2013 (0) Connected.
  16. Mon Dec 9 12:32:52 2013 (0) Local connection closed (bsize: 0).
  17. Mon Dec 9 12:32:52 2013 (0) Local: received 559 bytes, sent 396 bytes
  18. Mon Dec 9 12:32:52 2013 (0) Remote: received 396 bytes, sent 559 bytes
  19. Mon Dec 9 12:32:52 2013 Accepted connection from 127.0.0.1:52228
  20. Mon Dec 9 12:32:52 2013 PID for socket: 760
  21. Mon Dec 9 12:32:52 2013 PID 760: issending: 0
  22. Mon Dec 9 12:32:52 2013 (0) Connection from 127.0.0.1:52228 -- slot 0
  23. Mon Dec 9 12:32:52 2013 (0) [FAH] PID 760 is most likely contacting WU server, content length: 512
  24. Mon Dec 9 12:32:52 2013 (0) resolving '128.143.199.97:8080'
  25. Mon Dec 9 12:32:52 2013 (0) Connecting to: 128.143.199.97:8080
  26. Mon Dec 9 12:32:54 2013 (0) Connected.
  27. Mon Dec 9 12:32:57 2013 (0) Remote connection closed (rbsize: 0).
  28. Mon Dec 9 12:32:57 2013 (0) Local: received 629 bytes, sent 1762227 bytes
  29. Mon Dec 9 12:32:57 2013 (0) Remote: received 1762227 bytes, sent 629 bytes
  30. Mon Dec 9 12:32:57 2013 Accepted connection from 127.0.0.1:52230
  31. Mon Dec 9 12:32:57 2013 PID for socket: 760
  32. Mon Dec 9 12:32:57 2013 PID 760: issending: 0
  33. Mon Dec 9 12:32:57 2013 (0) Connection from 127.0.0.1:52230 -- slot 0
  34. Mon Dec 9 12:32:57 2013 (0) [FAH] PID 760 is contacting unknown server
  35. Mon Dec 9 12:32:57 2013 (0) resolving 'www.stanford.edu'
  36. Mon Dec 9 12:32:57 2013 (0) Connecting to: 171.67.215.200:80
  37. Mon Dec 9 12:32:57 2013 (0) Connected.
  38. Mon Dec 9 12:33:14 2013 (0) Local connection closed (bsize: 0).
  39. Mon Dec 9 12:33:14 2013 (0) Local: received 119 bytes, sent 2683557 bytes
  40. Mon Dec 9 12:33:14 2013 (0) Remote: received 2683557 bytes, sent 119 bytes
复制代码
@cuda
回复

使用道具 举报

 楼主| 发表于 2013-12-10 07:31:58 | 显示全部楼层
本帖最后由 金鹏 于 2013-12-10 07:35 编辑

  1. Mon Dec 9 17:59:43 2013 Accepted connection from 127.0.0.1:52660
  2. Mon Dec 9 17:59:43 2013 PID for socket: 757
  3. Mon Dec 9 17:59:43 2013 PID 757: issending: 0
  4. Mon Dec 9 17:59:43 2013 (0) Connection from 127.0.0.1:52660 -- slot 0
  5. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  6. Mon Dec 9 17:59:43 2013 (0) [FAH] Helper pid: -1
  7. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757: numcores: 0
  8. Mon Dec 9 17:59:43 2013 (0) [FAH] now: 1386611983, last helper launched at: 0
  9. Mon Dec 9 17:59:43 2013 (0) [FAH] Launching helper: '/proc/757/cwd/langouste-helper.sh' (exe name: '/usr/local/fah/fah6')...
  10. Mon Dec 9 17:59:43 2013 (0) [FAH] Forked 819
  11. Mon Dec 9 17:59:43 2013 (0) Local: received 16384 bytes, sent 0 bytes
  12. Mon Dec 9 17:59:43 2013 Accepted connection from 127.0.0.1:52661
  13. Mon Dec 9 17:59:43 2013 PID for socket: 757
  14. Mon Dec 9 17:59:43 2013 PID 757: issending: 0
  15. Mon Dec 9 17:59:43 2013 (0) Connection from 127.0.0.1:52661 -- slot 0
  16. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  17. Mon Dec 9 17:59:43 2013 (0) [FAH] Helper pid: -1
  18. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757: numcores: 0
  19. Mon Dec 9 17:59:43 2013 (0) [FAH] now: 1386611983, last helper launched at: 1386611983
  20. Mon Dec 9 17:59:43 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  21. Mon Dec 9 17:59:43 2013 (0) Local: received 16384 bytes, sent 0 bytes
  22. Mon Dec 9 17:59:43 2013 Accepted connection from 127.0.0.1:52662
  23. Mon Dec 9 17:59:43 2013 PID for socket: 757
  24. Mon Dec 9 17:59:43 2013 PID 757: issending: 0
  25. Mon Dec 9 17:59:43 2013 (0) Connection from 127.0.0.1:52662 -- slot 0
  26. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  27. Mon Dec 9 17:59:43 2013 (0) [FAH] Helper pid: -1
  28. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757: numcores: 0
  29. Mon Dec 9 17:59:43 2013 (0) [FAH] now: 1386611983, last helper launched at: 1386611983
  30. Mon Dec 9 17:59:43 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  31. Mon Dec 9 17:59:43 2013 (0) Local: received 16384 bytes, sent 0 bytes
  32. Mon Dec 9 17:59:43 2013 Accepted connection from 127.0.0.1:52663
  33. Mon Dec 9 17:59:43 2013 PID for socket: 757
  34. Mon Dec 9 17:59:43 2013 PID 757: issending: 0
  35. Mon Dec 9 17:59:43 2013 (0) Connection from 127.0.0.1:52663 -- slot 0
  36. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  37. Mon Dec 9 17:59:43 2013 (0) [FAH] Helper pid: -1
  38. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757: numcores: 0
  39. Mon Dec 9 17:59:43 2013 (0) [FAH] now: 1386611983, last helper launched at: 1386611983
  40. Mon Dec 9 17:59:43 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  41. Mon Dec 9 17:59:43 2013 (0) Local: received 16384 bytes, sent 0 bytes
  42. Mon Dec 9 17:59:43 2013 Accepted connection from 127.0.0.1:52664
  43. Mon Dec 9 17:59:43 2013 PID for socket: 757
  44. Mon Dec 9 17:59:43 2013 PID 757: issending: 0
  45. Mon Dec 9 17:59:43 2013 (0) Connection from 127.0.0.1:52664 -- slot 0
  46. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  47. Mon Dec 9 17:59:43 2013 (0) [FAH] Helper pid: -1
  48. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757: numcores: 0
  49. Mon Dec 9 17:59:43 2013 (0) [FAH] now: 1386611983, last helper launched at: 1386611983
  50. Mon Dec 9 17:59:43 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  51. Mon Dec 9 17:59:43 2013 (0) Local: received 16384 bytes, sent 0 bytes
  52. Mon Dec 9 17:59:43 2013 Accepted connection from 127.0.0.1:52665
  53. Mon Dec 9 17:59:43 2013 PID for socket: 757
  54. Mon Dec 9 17:59:43 2013 PID 757: issending: 0
  55. Mon Dec 9 17:59:43 2013 (0) Connection from 127.0.0.1:52665 -- slot 0
  56. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  57. Mon Dec 9 17:59:43 2013 (0) [FAH] Helper pid: -1
  58. Mon Dec 9 17:59:43 2013 (0) [FAH] PID 757: numcores: 0
  59. Mon Dec 9 17:59:43 2013 (0) [FAH] now: 1386611983, last helper launched at: 1386611983
  60. Mon Dec 9 17:59:43 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  61. Mon Dec 9 17:59:43 2013 (0) Local: received 16384 bytes, sent 0 bytes
  62. Mon Dec 9 17:59:44 2013 Accepted connection from 127.0.0.1:52666
  63. Mon Dec 9 17:59:44 2013 PID for socket: 757
  64. Mon Dec 9 17:59:44 2013 PID 757: issending: 0
  65. Mon Dec 9 17:59:44 2013 (0) Connection from 127.0.0.1:52666 -- slot 0
  66. Mon Dec 9 17:59:44 2013 (0) [FAH] PID 757 is contacting main assignment server
  67. Mon Dec 9 17:59:44 2013 (0) resolving 'assign.stanford.edu:8080'
  68. Mon Dec 9 17:59:44 2013 (0) Connecting to: 171.67.108.200:8080
  69. Mon Dec 9 17:59:44 2013 (0) Connected.
  70. Mon Dec 9 17:59:45 2013 (0) Local connection closed (bsize: 0).
  71. Mon Dec 9 17:59:45 2013 (0) Local: received 559 bytes, sent 396 bytes
  72. Mon Dec 9 17:59:45 2013 (0) Remote: received 396 bytes, sent 559 bytes
  73. Mon Dec 9 17:59:45 2013 Accepted connection from 127.0.0.1:52668
  74. Mon Dec 9 17:59:45 2013 PID for socket: 757
  75. Mon Dec 9 17:59:45 2013 PID 757: issending: 0
  76. Mon Dec 9 17:59:45 2013 (0) Connection from 127.0.0.1:52668 -- slot 0
  77. Mon Dec 9 17:59:45 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 512
  78. Mon Dec 9 17:59:45 2013 (0) resolving '128.143.199.97:8080'
  79. Mon Dec 9 17:59:45 2013 (0) Connecting to: 128.143.199.97:8080
  80. Mon Dec 9 17:59:45 2013 (0) Connected.
  81. Mon Dec 9 17:59:48 2013 (0) Remote connection closed (rbsize: 0).
  82. Mon Dec 9 17:59:48 2013 (0) Local: received 629 bytes, sent 1762452 bytes
  83. Mon Dec 9 17:59:48 2013 (0) Remote: received 1762452 bytes, sent 629 bytes
  84. Mon Dec 9 17:59:48 2013 Accepted connection from 127.0.0.1:52670
  85. Mon Dec 9 17:59:48 2013 PID for socket: 757
  86. Mon Dec 9 17:59:48 2013 PID 757: issending: 0
  87. Mon Dec 9 17:59:48 2013 (0) Connection from 127.0.0.1:52670 -- slot 0
  88. Mon Dec 9 17:59:48 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  89. Mon Dec 9 17:59:48 2013 (0) [FAH] Helper pid: -1
  90. Mon Dec 9 17:59:48 2013 (0) [FAH] PID 757: numcores: 0
  91. Mon Dec 9 17:59:48 2013 (0) [FAH] now: 1386611988, last helper launched at: 1386611983
  92. Mon Dec 9 17:59:48 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  93. Mon Dec 9 17:59:48 2013 (0) Local: received 16384 bytes, sent 0 bytes
  94. Mon Dec 9 17:59:48 2013 Accepted connection from 127.0.0.1:52671
  95. Mon Dec 9 17:59:48 2013 PID for socket: 757
  96. Mon Dec 9 17:59:48 2013 PID 757: issending: 0
  97. Mon Dec 9 17:59:48 2013 (0) Connection from 127.0.0.1:52671 -- slot 0
  98. Mon Dec 9 17:59:48 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  99. Mon Dec 9 17:59:48 2013 (0) [FAH] Helper pid: -1
  100. Mon Dec 9 17:59:48 2013 (0) [FAH] PID 757: numcores: 0
  101. Mon Dec 9 17:59:48 2013 (0) [FAH] now: 1386611988, last helper launched at: 1386611983
  102. Mon Dec 9 17:59:48 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  103. Mon Dec 9 17:59:48 2013 (0) Local: received 16384 bytes, sent 0 bytes
  104. Mon Dec 9 17:59:48 2013 Accepted connection from 127.0.0.1:52672
  105. Mon Dec 9 17:59:48 2013 PID for socket: 757
  106. Mon Dec 9 17:59:48 2013 PID 757: issending: 0
  107. Mon Dec 9 17:59:48 2013 (0) Connection from 127.0.0.1:52672 -- slot 0
  108. Mon Dec 9 17:59:48 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  109. Mon Dec 9 17:59:48 2013 (0) [FAH] Helper pid: -1
  110. Mon Dec 9 17:59:48 2013 (0) [FAH] PID 757: numcores: 0
  111. Mon Dec 9 17:59:48 2013 (0) [FAH] now: 1386611988, last helper launched at: 1386611983
  112. Mon Dec 9 17:59:48 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  113. Mon Dec 9 17:59:48 2013 (0) Local: received 16384 bytes, sent 0 bytes
  114. Mon Dec 9 17:59:48 2013 Accepted connection from 127.0.0.1:52673
  115. Mon Dec 9 17:59:48 2013 PID for socket: 757
  116. Mon Dec 9 17:59:48 2013 PID 757: issending: 0
  117. Mon Dec 9 17:59:48 2013 (0) Connection from 127.0.0.1:52673 -- slot 0
  118. Mon Dec 9 17:59:48 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10183792
  119. Mon Dec 9 17:59:48 2013 (0) [FAH] Helper pid: -1
  120. Mon Dec 9 17:59:48 2013 (0) [FAH] PID 757: numcores: 0
  121. Mon Dec 9 17:59:48 2013 (0) [FAH] now: 1386611988, last helper launched at: 1386611983
  122. Mon Dec 9 17:59:48 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  123. Mon Dec 9 17:59:48 2013 (0) Local: received 16384 bytes, sent 0 bytes
  124. Mon Dec 9 18:00:44 2013 Accepted connection from 127.0.0.1:52674
  125. Mon Dec 9 18:00:44 2013 PID for socket: 848
  126. Mon Dec 9 18:00:44 2013 PID 848: issending: 1
  127. Mon Dec 9 18:00:44 2013 (0) Connection from 127.0.0.1:52674 -- slot 0
  128. Mon Dec 9 18:00:44 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 10183792
  129. Mon Dec 9 18:00:44 2013 (0) resolving '128.143.199.97:8080'
  130. Mon Dec 9 18:00:44 2013 (0) Connecting to: 128.143.199.97:8080
  131. Mon Dec 9 18:00:44 2013 (0) Connected.
  132. Mon Dec 9 18:01:24 2013 (0) Complete request sent.
  133. Mon Dec 9 18:01:27 2013 (0) Remote connection closed (rbsize: 0).
  134. Mon Dec 9 18:01:27 2013 (0) Local: received 10183914 bytes, sent 634 bytes
  135. Mon Dec 9 18:01:27 2013 (0) Remote: received 634 bytes, sent 10183914 bytes
  136. Mon Dec 9 18:01:27 2013 (0) Ratelimit: sent 10183914 byte(s) in 43.018 seconds, 236736 Bps (231.18 kBps)
复制代码
回复

使用道具 举报

 楼主| 发表于 2013-12-10 07:34:57 | 显示全部楼层
  1. Mon Dec 9 23:15:00 2013 Accepted connection from 127.0.0.1:52676
  2. Mon Dec 9 23:15:00 2013 PID for socket: 757
  3. Mon Dec 9 23:15:00 2013 PID 757: issending: 0
  4. Mon Dec 9 23:15:00 2013 (0) Connection from 127.0.0.1:52676 -- slot 0
  5. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  6. Mon Dec 9 23:15:00 2013 (0) [FAH] Helper pid: -1
  7. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757: numcores: 0
  8. Mon Dec 9 23:15:00 2013 (0) [FAH] now: 1386630900, last helper launched at: 0
  9. Mon Dec 9 23:15:00 2013 (0) [FAH] Launching helper: '/proc/757/cwd/langouste-helper.sh' (exe name: '/usr/local/fah/fah6')...
  10. Mon Dec 9 23:15:00 2013 (0) [FAH] Forked 866
  11. Mon Dec 9 23:15:00 2013 (0) Local: received 16384 bytes, sent 0 bytes
  12. Mon Dec 9 23:15:00 2013 Accepted connection from 127.0.0.1:52677
  13. Mon Dec 9 23:15:00 2013 PID for socket: 757
  14. Mon Dec 9 23:15:00 2013 PID 757: issending: 0
  15. Mon Dec 9 23:15:00 2013 (0) Connection from 127.0.0.1:52677 -- slot 0
  16. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  17. Mon Dec 9 23:15:00 2013 (0) [FAH] Helper pid: -1
  18. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757: numcores: 0
  19. Mon Dec 9 23:15:00 2013 (0) [FAH] now: 1386630900, last helper launched at: 1386630900
  20. Mon Dec 9 23:15:00 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  21. Mon Dec 9 23:15:00 2013 (0) Local: received 16384 bytes, sent 0 bytes
  22. Mon Dec 9 23:15:00 2013 Accepted connection from 127.0.0.1:52678
  23. Mon Dec 9 23:15:00 2013 PID for socket: 757
  24. Mon Dec 9 23:15:00 2013 PID 757: issending: 0
  25. Mon Dec 9 23:15:00 2013 (0) Connection from 127.0.0.1:52678 -- slot 0
  26. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  27. Mon Dec 9 23:15:00 2013 (0) [FAH] Helper pid: -1
  28. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757: numcores: 0
  29. Mon Dec 9 23:15:00 2013 (0) [FAH] now: 1386630900, last helper launched at: 1386630900
  30. Mon Dec 9 23:15:00 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  31. Mon Dec 9 23:15:00 2013 (0) Local: received 16384 bytes, sent 0 bytes
  32. Mon Dec 9 23:15:00 2013 Accepted connection from 127.0.0.1:52679
  33. Mon Dec 9 23:15:00 2013 PID for socket: 757
  34. Mon Dec 9 23:15:00 2013 PID 757: issending: 0
  35. Mon Dec 9 23:15:00 2013 (0) Connection from 127.0.0.1:52679 -- slot 0
  36. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  37. Mon Dec 9 23:15:00 2013 (0) [FAH] Helper pid: -1
  38. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757: numcores: 0
  39. Mon Dec 9 23:15:00 2013 (0) [FAH] now: 1386630900, last helper launched at: 1386630900
  40. Mon Dec 9 23:15:00 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  41. Mon Dec 9 23:15:00 2013 (0) Local: received 16384 bytes, sent 0 bytes
  42. Mon Dec 9 23:15:00 2013 Accepted connection from 127.0.0.1:52680
  43. Mon Dec 9 23:15:00 2013 PID for socket: 757
  44. Mon Dec 9 23:15:00 2013 PID 757: issending: 0
  45. Mon Dec 9 23:15:00 2013 (0) Connection from 127.0.0.1:52680 -- slot 0
  46. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  47. Mon Dec 9 23:15:00 2013 (0) [FAH] Helper pid: -1
  48. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757: numcores: 0
  49. Mon Dec 9 23:15:00 2013 (0) [FAH] now: 1386630900, last helper launched at: 1386630900
  50. Mon Dec 9 23:15:00 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  51. Mon Dec 9 23:15:00 2013 (0) Local: received 16384 bytes, sent 0 bytes
  52. Mon Dec 9 23:15:00 2013 Accepted connection from 127.0.0.1:52681
  53. Mon Dec 9 23:15:00 2013 PID for socket: 757
  54. Mon Dec 9 23:15:00 2013 PID 757: issending: 0
  55. Mon Dec 9 23:15:00 2013 (0) Connection from 127.0.0.1:52681 -- slot 0
  56. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  57. Mon Dec 9 23:15:00 2013 (0) [FAH] Helper pid: -1
  58. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757: numcores: 0
  59. Mon Dec 9 23:15:00 2013 (0) [FAH] now: 1386630900, last helper launched at: 1386630900
  60. Mon Dec 9 23:15:00 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  61. Mon Dec 9 23:15:00 2013 (0) Local: received 16384 bytes, sent 0 bytes
  62. Mon Dec 9 23:15:00 2013 Accepted connection from 127.0.0.1:52682
  63. Mon Dec 9 23:15:00 2013 PID for socket: 757
  64. Mon Dec 9 23:15:00 2013 PID 757: issending: 0
  65. Mon Dec 9 23:15:00 2013 (0) Connection from 127.0.0.1:52682 -- slot 0
  66. Mon Dec 9 23:15:00 2013 (0) [FAH] PID 757 is contacting main assignment server
  67. Mon Dec 9 23:15:00 2013 (0) resolving 'assign.stanford.edu:8080'
  68. Mon Dec 9 23:15:01 2013 (0) Connecting to: 171.67.108.200:8080
  69. Mon Dec 9 23:15:01 2013 (0) Connected.
  70. Mon Dec 9 23:15:01 2013 (0) Local connection closed (bsize: 0).
  71. Mon Dec 9 23:15:01 2013 (0) Local: received 559 bytes, sent 396 bytes
  72. Mon Dec 9 23:15:01 2013 (0) Remote: received 396 bytes, sent 559 bytes
  73. Mon Dec 9 23:15:01 2013 Accepted connection from 127.0.0.1:52684
  74. Mon Dec 9 23:15:01 2013 PID for socket: 757
  75. Mon Dec 9 23:15:01 2013 PID 757: issending: 0
  76. Mon Dec 9 23:15:01 2013 (0) Connection from 127.0.0.1:52684 -- slot 0
  77. Mon Dec 9 23:15:01 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 512
  78. Mon Dec 9 23:15:01 2013 (0) resolving '128.143.199.97:8080'
  79. Mon Dec 9 23:15:01 2013 (0) Connecting to: 128.143.199.97:8080
  80. Mon Dec 9 23:15:01 2013 (0) Connected.
  81. Mon Dec 9 23:15:05 2013 (0) Remote connection closed (rbsize: 0).
  82. Mon Dec 9 23:15:05 2013 (0) Local: received 629 bytes, sent 1762219 bytes
  83. Mon Dec 9 23:15:05 2013 (0) Remote: received 1762219 bytes, sent 629 bytes
  84. Mon Dec 9 23:15:05 2013 Accepted connection from 127.0.0.1:52686
  85. Mon Dec 9 23:15:05 2013 PID for socket: 757
  86. Mon Dec 9 23:15:05 2013 PID 757: issending: 0
  87. Mon Dec 9 23:15:05 2013 (0) Connection from 127.0.0.1:52686 -- slot 0
  88. Mon Dec 9 23:15:05 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  89. Mon Dec 9 23:15:05 2013 (0) [FAH] Helper pid: -1
  90. Mon Dec 9 23:15:05 2013 (0) [FAH] PID 757: numcores: 0
  91. Mon Dec 9 23:15:05 2013 (0) [FAH] now: 1386630905, last helper launched at: 1386630900
  92. Mon Dec 9 23:15:05 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  93. Mon Dec 9 23:15:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  94. Mon Dec 9 23:15:05 2013 Accepted connection from 127.0.0.1:52687
  95. Mon Dec 9 23:15:05 2013 PID for socket: 757
  96. Mon Dec 9 23:15:05 2013 PID 757: issending: 0
  97. Mon Dec 9 23:15:05 2013 (0) Connection from 127.0.0.1:52687 -- slot 0
  98. Mon Dec 9 23:15:05 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  99. Mon Dec 9 23:15:05 2013 (0) [FAH] Helper pid: -1
  100. Mon Dec 9 23:15:05 2013 (0) [FAH] PID 757: numcores: 0
  101. Mon Dec 9 23:15:05 2013 (0) [FAH] now: 1386630905, last helper launched at: 1386630900
  102. Mon Dec 9 23:15:05 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  103. Mon Dec 9 23:15:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  104. Mon Dec 9 23:15:05 2013 Accepted connection from 127.0.0.1:52688
  105. Mon Dec 9 23:15:05 2013 PID for socket: 757
  106. Mon Dec 9 23:15:05 2013 PID 757: issending: 0
  107. Mon Dec 9 23:15:05 2013 (0) Connection from 127.0.0.1:52688 -- slot 0
  108. Mon Dec 9 23:15:05 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  109. Mon Dec 9 23:15:05 2013 (0) [FAH] Helper pid: -1
  110. Mon Dec 9 23:15:05 2013 (0) [FAH] PID 757: numcores: 0
  111. Mon Dec 9 23:15:05 2013 (0) [FAH] now: 1386630905, last helper launched at: 1386630900
  112. Mon Dec 9 23:15:05 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  113. Mon Dec 9 23:15:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  114. Mon Dec 9 23:15:05 2013 Accepted connection from 127.0.0.1:52689
  115. Mon Dec 9 23:15:05 2013 PID for socket: 757
  116. Mon Dec 9 23:15:05 2013 PID 757: issending: 0
  117. Mon Dec 9 23:15:05 2013 (0) Connection from 127.0.0.1:52689 -- slot 0
  118. Mon Dec 9 23:15:05 2013 (0) [FAH] PID 757 is most likely contacting WU server, content length: 10197349
  119. Mon Dec 9 23:15:05 2013 (0) [FAH] Helper pid: -1
  120. Mon Dec 9 23:15:05 2013 (0) [FAH] PID 757: numcores: 0
  121. Mon Dec 9 23:15:05 2013 (0) [FAH] now: 1386630905, last helper launched at: 1386630900
  122. Mon Dec 9 23:15:05 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  123. Mon Dec 9 23:15:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  124. Mon Dec 9 23:16:00 2013 Accepted connection from 127.0.0.1:52690
  125. Mon Dec 9 23:16:00 2013 PID for socket: 895
  126. Mon Dec 9 23:16:00 2013 PID 895: issending: 1
  127. Mon Dec 9 23:16:00 2013 (0) Connection from 127.0.0.1:52690 -- slot 0
  128. Mon Dec 9 23:16:00 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 10197349
  129. Mon Dec 9 23:16:00 2013 (0) resolving '128.143.199.97:8080'
  130. Mon Dec 9 23:16:00 2013 (0) Connecting to: 128.143.199.97:8080
  131. Mon Dec 9 23:16:00 2013 (0) Connected.
  132. Mon Dec 9 23:16:37 2013 (0) Complete request sent.
  133. Mon Dec 9 23:16:40 2013 (0) Remote connection closed (rbsize: 0).
  134. Mon Dec 9 23:16:40 2013 (0) Local: received 10197471 bytes, sent 634 bytes
  135. Mon Dec 9 23:16:40 2013 (0) Remote: received 634 bytes, sent 10197471 bytes
  136. Mon Dec 9 23:16:40 2013 (0) Ratelimit: sent 10197471 byte(s) in 39.732 seconds, 256656 Bps (250.64 kBps)
复制代码
回复

使用道具 举报

 楼主| 发表于 2013-12-12 08:44:43 | 显示全部楼层
cuda 发表于 2013-12-9 14:31
先用tar解压,然后直接输入make即可编译。
我编译了一个,不过编译过程中有一些警告,看看能不能用?

国内网络成问题,低优先级的服务器上传不能保证稳定性啊

造成15.17时断时续,耗时7小时多次才上传成功

  1. Langouste De-coupler Log:

  2. Wed Dec 11 09:30:30 2013 Accepted connection from 127.0.0.1:60702
  3. Wed Dec 11 09:30:30 2013 PID for socket: 514
  4. Wed Dec 11 09:30:30 2013 PID 514: issending: 0
  5. Wed Dec 11 09:30:30 2013 (0) Connection from 127.0.0.1:60702 -- slot 0
  6. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  7. Wed Dec 11 09:30:30 2013 (0) [FAH] Helper pid: -1
  8. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514: numcores: 0
  9. Wed Dec 11 09:30:30 2013 (0) [FAH] now: 1386754230, last helper launched at: 1386695433
  10. Wed Dec 11 09:30:30 2013 (0) [FAH] Launching helper: '/proc/514/cwd/langouste-helper.sh' (exe name: '/usr/local/fah/fah6')...
  11. Wed Dec 11 09:30:30 2013 (0) [FAH] Forked 784
  12. Wed Dec 11 09:30:30 2013 (0) Local: received 16384 bytes, sent 0 bytes
  13. Wed Dec 11 09:30:30 2013 Accepted connection from 127.0.0.1:60703
  14. Wed Dec 11 09:30:30 2013 PID for socket: 514
  15. Wed Dec 11 09:30:30 2013 PID 514: issending: 0
  16. Wed Dec 11 09:30:30 2013 (0) Connection from 127.0.0.1:60703 -- slot 0
  17. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  18. Wed Dec 11 09:30:30 2013 (0) [FAH] Helper pid: -1
  19. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514: numcores: 0
  20. Wed Dec 11 09:30:30 2013 (0) [FAH] now: 1386754230, last helper launched at: 1386754230
  21. Wed Dec 11 09:30:30 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  22. Wed Dec 11 09:30:30 2013 (0) Local: received 16384 bytes, sent 0 bytes
  23. Wed Dec 11 09:30:30 2013 Accepted connection from 127.0.0.1:60704
  24. Wed Dec 11 09:30:30 2013 PID for socket: 514
  25. Wed Dec 11 09:30:30 2013 PID 514: issending: 0
  26. Wed Dec 11 09:30:30 2013 (0) Connection from 127.0.0.1:60704 -- slot 0
  27. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  28. Wed Dec 11 09:30:30 2013 (0) [FAH] Helper pid: -1
  29. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514: numcores: 0
  30. Wed Dec 11 09:30:30 2013 (0) [FAH] now: 1386754230, last helper launched at: 1386754230
  31. Wed Dec 11 09:30:30 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  32. Wed Dec 11 09:30:30 2013 (0) Local: received 16384 bytes, sent 0 bytes
  33. Wed Dec 11 09:30:30 2013 Accepted connection from 127.0.0.1:60705
  34. Wed Dec 11 09:30:30 2013 PID for socket: 514
  35. Wed Dec 11 09:30:30 2013 PID 514: issending: 0
  36. Wed Dec 11 09:30:30 2013 (0) Connection from 127.0.0.1:60705 -- slot 0
  37. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  38. Wed Dec 11 09:30:30 2013 (0) [FAH] Helper pid: -1
  39. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514: numcores: 0
  40. Wed Dec 11 09:30:30 2013 (0) [FAH] now: 1386754230, last helper launched at: 1386754230
  41. Wed Dec 11 09:30:30 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  42. Wed Dec 11 09:30:30 2013 (0) Local: received 16384 bytes, sent 0 bytes
  43. Wed Dec 11 09:30:30 2013 Accepted connection from 127.0.0.1:60706
  44. Wed Dec 11 09:30:30 2013 PID for socket: 514
  45. Wed Dec 11 09:30:30 2013 PID 514: issending: 0
  46. Wed Dec 11 09:30:30 2013 (0) Connection from 127.0.0.1:60706 -- slot 0
  47. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  48. Wed Dec 11 09:30:30 2013 (0) [FAH] Helper pid: -1
  49. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514: numcores: 0
  50. Wed Dec 11 09:30:30 2013 (0) [FAH] now: 1386754230, last helper launched at: 1386754230
  51. Wed Dec 11 09:30:30 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  52. Wed Dec 11 09:30:30 2013 (0) Local: received 16384 bytes, sent 0 bytes
  53. Wed Dec 11 09:30:30 2013 Accepted connection from 127.0.0.1:60707
  54. Wed Dec 11 09:30:30 2013 PID for socket: 514
  55. Wed Dec 11 09:30:30 2013 PID 514: issending: 0
  56. Wed Dec 11 09:30:30 2013 (0) Connection from 127.0.0.1:60707 -- slot 0
  57. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  58. Wed Dec 11 09:30:30 2013 (0) [FAH] Helper pid: -1
  59. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514: numcores: 0
  60. Wed Dec 11 09:30:30 2013 (0) [FAH] now: 1386754230, last helper launched at: 1386754230
  61. Wed Dec 11 09:30:30 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  62. Wed Dec 11 09:30:30 2013 (0) Local: received 16384 bytes, sent 0 bytes
  63. Wed Dec 11 09:30:30 2013 Accepted connection from 127.0.0.1:60708
  64. Wed Dec 11 09:30:30 2013 PID for socket: 514
  65. Wed Dec 11 09:30:30 2013 PID 514: issending: 0
  66. Wed Dec 11 09:30:30 2013 (0) Connection from 127.0.0.1:60708 -- slot 0
  67. Wed Dec 11 09:30:30 2013 (0) [FAH] PID 514 is contacting main assignment server
  68. Wed Dec 11 09:30:30 2013 (0) resolving 'assign.stanford.edu:8080'
  69. Wed Dec 11 09:30:31 2013 (0) Connecting to: 171.67.108.200:8080
  70. Wed Dec 11 09:30:31 2013 (0) Connected.
  71. Wed Dec 11 09:30:31 2013 (0) Local connection closed (bsize: 0).
  72. Wed Dec 11 09:30:31 2013 (0) Local: received 559 bytes, sent 396 bytes
  73. Wed Dec 11 09:30:31 2013 (0) Remote: received 396 bytes, sent 559 bytes
  74. Wed Dec 11 09:30:32 2013 Accepted connection from 127.0.0.1:60710
  75. Wed Dec 11 09:30:32 2013 PID for socket: 514
  76. Wed Dec 11 09:30:32 2013 PID 514: issending: 0
  77. Wed Dec 11 09:30:32 2013 (0) Connection from 127.0.0.1:60710 -- slot 0
  78. Wed Dec 11 09:30:32 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 512
  79. Wed Dec 11 09:30:32 2013 (0) resolving '128.143.231.201:8080'
  80. Wed Dec 11 09:30:32 2013 (0) Connecting to: 128.143.231.201:8080
  81. Wed Dec 11 09:30:32 2013 (0) Connected.
  82. Wed Dec 11 09:31:31 2013 Accepted connection from 127.0.0.1:60712
  83. Wed Dec 11 09:31:31 2013 PID for socket: 798
  84. Wed Dec 11 09:31:31 2013 PID 798: issending: 1
  85. Wed Dec 11 09:31:31 2013 (1) Connection from 127.0.0.1:60712 -- slot 1
  86. Wed Dec 11 09:31:31 2013 (1) [FAH] PID -1 is most likely contacting WU server, content length: 91368938
  87. Wed Dec 11 09:31:31 2013 (1) resolving '128.143.231.201:8080'
  88. Wed Dec 11 09:31:31 2013 (1) Connecting to: 128.143.231.201:8080
  89. Wed Dec 11 09:31:31 2013 (1) Connected.
  90. Wed Dec 11 09:35:04 2013 (0) Remote connection closed (rbsize: 0).
  91. Wed Dec 11 09:35:04 2013 (0) Local: received 631 bytes, sent 30340311 bytes
  92. Wed Dec 11 09:35:04 2013 (0) Remote: received 30340311 bytes, sent 631 bytes
  93. Wed Dec 11 09:35:04 2013 Accepted connection from 127.0.0.1:60714
  94. Wed Dec 11 09:35:04 2013 PID for socket: 514
  95. Wed Dec 11 09:35:04 2013 PID 514: issending: 0
  96. Wed Dec 11 09:35:04 2013 (0) Connection from 127.0.0.1:60714 -- slot 0
  97. Wed Dec 11 09:35:04 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  98. Wed Dec 11 09:35:04 2013 (0) [FAH] Helper pid: 798
  99. Wed Dec 11 09:35:04 2013 (0) [FAH] PID 514: numcores: 0
  100. Wed Dec 11 09:35:04 2013 (0) [FAH] Helper (pid 798) already running
  101. Wed Dec 11 09:35:04 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  102. Wed Dec 11 09:35:04 2013 (0) Local: received 16384 bytes, sent 0 bytes
  103. Wed Dec 11 09:35:04 2013 Accepted connection from 127.0.0.1:60715
  104. Wed Dec 11 09:35:04 2013 PID for socket: 514
  105. Wed Dec 11 09:35:04 2013 PID 514: issending: 0
  106. Wed Dec 11 09:35:04 2013 (0) Connection from 127.0.0.1:60715 -- slot 0
  107. Wed Dec 11 09:35:04 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  108. Wed Dec 11 09:35:04 2013 (0) [FAH] Helper pid: 798
  109. Wed Dec 11 09:35:04 2013 (0) [FAH] PID 514: numcores: 0
  110. Wed Dec 11 09:35:04 2013 (0) [FAH] Helper (pid 798) already running
  111. Wed Dec 11 09:35:04 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  112. Wed Dec 11 09:35:04 2013 (0) Local: received 16384 bytes, sent 0 bytes
  113. Wed Dec 11 09:35:05 2013 Accepted connection from 127.0.0.1:60716
  114. Wed Dec 11 09:35:05 2013 PID for socket: 514
  115. Wed Dec 11 09:35:05 2013 PID 514: issending: 0
  116. Wed Dec 11 09:35:05 2013 (0) Connection from 127.0.0.1:60716 -- slot 0
  117. Wed Dec 11 09:35:05 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  118. Wed Dec 11 09:35:05 2013 (0) [FAH] Helper pid: 798
  119. Wed Dec 11 09:35:05 2013 (0) [FAH] PID 514: numcores: 0
  120. Wed Dec 11 09:35:05 2013 (0) [FAH] Helper (pid 798) already running
  121. Wed Dec 11 09:35:05 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  122. Wed Dec 11 09:35:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  123. Wed Dec 11 09:35:05 2013 Accepted connection from 127.0.0.1:60717
  124. Wed Dec 11 09:35:05 2013 PID for socket: 514
  125. Wed Dec 11 09:35:05 2013 PID 514: issending: 0
  126. Wed Dec 11 09:35:05 2013 (0) Connection from 127.0.0.1:60717 -- slot 0
  127. Wed Dec 11 09:35:05 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  128. Wed Dec 11 09:35:05 2013 (0) [FAH] Helper pid: 798
  129. Wed Dec 11 09:35:05 2013 (0) [FAH] PID 514: numcores: 0
  130. Wed Dec 11 09:35:05 2013 (0) [FAH] Helper (pid 798) already running
  131. Wed Dec 11 09:35:05 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  132. Wed Dec 11 09:35:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  133. Wed Dec 11 09:42:00 2013 (1) Remote connection closed (rbsize: 0).
  134. Wed Dec 11 09:42:00 2013 (1) Local: received 20054016 bytes, sent 0 bytes
  135. Wed Dec 11 09:42:00 2013 (1) Remote: received 0 bytes, sent 20042476 bytes
  136. Wed Dec 11 09:42:00 2013 (1) Ratelimit: sent 20042476 byte(s) in 629.324 seconds, 31847 Bps (31.10 kBps)
  137. Wed Dec 11 09:42:00 2013 Accepted connection from 127.0.0.1:60718
  138. Wed Dec 11 09:42:00 2013 PID for socket: 798
  139. Wed Dec 11 09:42:00 2013 PID 798: issending: 1
  140. Wed Dec 11 09:42:00 2013 (0) Connection from 127.0.0.1:60718 -- slot 0
  141. Wed Dec 11 09:42:00 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 91368938
  142. Wed Dec 11 09:42:00 2013 (0) resolving '128.143.231.201:80'
  143. Wed Dec 11 09:42:00 2013 (0) Connecting to: 128.143.231.201:80
  144. Wed Dec 11 09:42:01 2013 (0) Connected.
  145. Wed Dec 11 09:47:09 2013 (0) Remote connection closed (rbsize: 0).
  146. Wed Dec 11 09:47:09 2013 (0) Local: received 7897088 bytes, sent 0 bytes
  147. Wed Dec 11 09:47:09 2013 (0) Remote: received 0 bytes, sent 7887248 bytes
  148. Wed Dec 11 09:47:09 2013 (0) Ratelimit: sent 7887248 byte(s) in 308.516 seconds, 25565 Bps (24.96 kBps)
  149. Wed Dec 11 09:47:09 2013 Accepted connection from 127.0.0.1:60720
  150. Wed Dec 11 09:47:09 2013 PID for socket: 798
  151. Wed Dec 11 09:47:09 2013 PID 798: issending: 1
  152. Wed Dec 11 09:47:09 2013 (0) Connection from 127.0.0.1:60720 -- slot 0
  153. Wed Dec 11 09:47:09 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 91368938
  154. Wed Dec 11 09:47:09 2013 (0) resolving '128.143.199.97:8080'
  155. Wed Dec 11 09:47:09 2013 (0) Connecting to: 128.143.199.97:8080
  156. Wed Dec 11 09:47:09 2013 (0) Connected.
  157. Wed Dec 11 09:52:33 2013 (0) Remote connection closed (rbsize: 0).
  158. Wed Dec 11 09:52:33 2013 (0) Local: received 7438458 bytes, sent 0 bytes
  159. Wed Dec 11 09:52:33 2013 (0) Remote: received 0 bytes, sent 7429918 bytes
  160. Wed Dec 11 09:52:33 2013 (0) Ratelimit: sent 7429918 byte(s) in 323.281 seconds, 22982 Bps (22.44 kBps)
  161. Wed Dec 11 09:52:33 2013 Accepted connection from 127.0.0.1:60722
  162. Wed Dec 11 09:52:33 2013 PID for socket: 798
  163. Wed Dec 11 09:52:33 2013 PID 798: issending: 1
  164. Wed Dec 11 09:52:33 2013 (0) Connection from 127.0.0.1:60722 -- slot 0
  165. Wed Dec 11 09:52:33 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 91368938
  166. Wed Dec 11 09:52:33 2013 (0) resolving '128.143.199.97:80'
  167. Wed Dec 11 09:52:33 2013 (0) Connecting to: 128.143.199.97:80
  168. Wed Dec 11 09:52:33 2013 (0) Connected.
  169. Wed Dec 11 09:57:54 2013 (0) Remote connection closed (rbsize: 0).
  170. Wed Dec 11 09:57:54 2013 (0) Local: received 6455296 bytes, sent 0 bytes
  171. Wed Dec 11 09:57:54 2013 (0) Remote: received 0 bytes, sent 6449392 bytes
  172. Wed Dec 11 09:57:54 2013 (0) Ratelimit: sent 6449392 byte(s) in 320.852 seconds, 20100 Bps (19.62 kBps)
  173. Wed Dec 11 12:28:56 2013 Accepted connection from 127.0.0.1:60724
  174. Wed Dec 11 12:28:56 2013 PID for socket: 514
  175. Wed Dec 11 12:28:56 2013 PID 514: issending: 0
  176. Wed Dec 11 12:28:56 2013 (0) Connection from 127.0.0.1:60724 -- slot 0
  177. Wed Dec 11 12:28:56 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  178. Wed Dec 11 12:28:56 2013 (0) [FAH] Helper pid: -1
  179. Wed Dec 11 12:28:56 2013 (0) [FAH] PID 514: numcores: 2
  180. Wed Dec 11 12:28:56 2013 (0) [FAH] now: 1386764936, last helper launched at: 1386754230
  181. Wed Dec 11 12:28:56 2013 (0) resolving '128.143.231.201:8080'
  182. Wed Dec 11 12:28:56 2013 (0) Connecting to: 128.143.231.201:8080
  183. Wed Dec 11 12:28:57 2013 (0) Connected.
  184. Wed Dec 11 12:30:24 2013 (0) Remote connection closed (rbsize: 0).
  185. Wed Dec 11 12:30:24 2013 (0) Local: received 196732 bytes, sent 0 bytes
  186. Wed Dec 11 12:30:24 2013 (0) Remote: received 0 bytes, sent 181428 bytes
  187. Wed Dec 11 12:30:24 2013 (0) Ratelimit: sent 181428 byte(s) in 86.560 seconds, 2095 Bps (2.04 kBps)
  188. Wed Dec 11 12:30:24 2013 Accepted connection from 127.0.0.1:60726
  189. Wed Dec 11 12:30:24 2013 PID for socket: 514
  190. Wed Dec 11 12:30:24 2013 PID 514: issending: 0
  191. Wed Dec 11 12:30:24 2013 (0) Connection from 127.0.0.1:60726 -- slot 0
  192. Wed Dec 11 12:30:24 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  193. Wed Dec 11 12:30:24 2013 (0) [FAH] Helper pid: -1
  194. Wed Dec 11 12:30:24 2013 (0) [FAH] PID 514: numcores: 2
  195. Wed Dec 11 12:30:24 2013 (0) [FAH] now: 1386765024, last helper launched at: 1386754230
  196. Wed Dec 11 12:30:24 2013 (0) resolving '128.143.231.201:80'
  197. Wed Dec 11 12:30:24 2013 (0) Connecting to: 128.143.231.201:80
  198. Wed Dec 11 12:30:54 2013 (0) Connection timed out
  199. Wed Dec 11 12:30:54 2013 (0) Local: received 16384 bytes, sent 0 bytes
  200. Wed Dec 11 12:30:54 2013 (0) Remote: received 0 bytes, sent 0 bytes
  201. Wed Dec 11 12:30:54 2013 Accepted connection from 127.0.0.1:60728
  202. Wed Dec 11 12:30:54 2013 PID for socket: 514
  203. Wed Dec 11 12:30:54 2013 PID 514: issending: 0
  204. Wed Dec 11 12:30:54 2013 (0) Connection from 127.0.0.1:60728 -- slot 0
  205. Wed Dec 11 12:30:54 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  206. Wed Dec 11 12:30:54 2013 (0) [FAH] Helper pid: -1
  207. Wed Dec 11 12:30:54 2013 (0) [FAH] PID 514: numcores: 2
  208. Wed Dec 11 12:30:54 2013 (0) [FAH] now: 1386765054, last helper launched at: 1386754230
  209. Wed Dec 11 12:30:54 2013 (0) resolving '128.143.199.97:8080'
  210. Wed Dec 11 12:30:54 2013 (0) Connecting to: 128.143.199.97:8080
  211. Wed Dec 11 12:30:55 2013 (0) Connected.
  212. Wed Dec 11 12:32:40 2013 (0) Remote connection closed (rbsize: 0).
  213. Wed Dec 11 12:32:40 2013 (0) Local: received 49274 bytes, sent 0 bytes
  214. Wed Dec 11 12:32:40 2013 (0) Remote: received 0 bytes, sent 39946 bytes
  215. Wed Dec 11 12:32:40 2013 (0) Ratelimit: sent 39946 byte(s) in 105.220 seconds, 379 Bps (0.37 kBps)
  216. Wed Dec 11 12:32:40 2013 Accepted connection from 127.0.0.1:60730
  217. Wed Dec 11 12:32:40 2013 PID for socket: 514
  218. Wed Dec 11 12:32:40 2013 PID 514: issending: 0
  219. Wed Dec 11 12:32:40 2013 (0) Connection from 127.0.0.1:60730 -- slot 0
  220. Wed Dec 11 12:32:40 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  221. Wed Dec 11 12:32:40 2013 (0) [FAH] Helper pid: -1
  222. Wed Dec 11 12:32:40 2013 (0) [FAH] PID 514: numcores: 2
  223. Wed Dec 11 12:32:40 2013 (0) [FAH] now: 1386765160, last helper launched at: 1386754230
  224. Wed Dec 11 12:32:40 2013 (0) resolving '128.143.199.97:80'
  225. Wed Dec 11 12:32:40 2013 (0) Connecting to: 128.143.199.97:80
  226. Wed Dec 11 12:32:40 2013 (0) Connected.
  227. Wed Dec 11 12:34:18 2013 (0) Remote connection closed (rbsize: 0).
  228. Wed Dec 11 12:34:18 2013 (0) Local: received 98304 bytes, sent 0 bytes
  229. Wed Dec 11 12:34:18 2013 (0) Remote: received 0 bytes, sent 87508 bytes
  230. Wed Dec 11 12:34:18 2013 (0) Ratelimit: sent 87508 byte(s) in 97.363 seconds, 898 Bps (0.87 kBps)
  231. Wed Dec 11 18:34:18 2013 Accepted connection from 127.0.0.1:60732
  232. Wed Dec 11 18:34:18 2013 PID for socket: 514
  233. Wed Dec 11 18:34:18 2013 PID 514: issending: 0
  234. Wed Dec 11 18:34:18 2013 (0) Connection from 127.0.0.1:60732 -- slot 0
  235. Wed Dec 11 18:34:18 2013 (0) [FAH] PID 514 is most likely contacting WU server, content length: 91368938
  236. Wed Dec 11 18:34:18 2013 (0) [FAH] Helper pid: -1
  237. Wed Dec 11 18:34:18 2013 (0) [FAH] PID 514: numcores: 2
  238. Wed Dec 11 18:34:18 2013 (0) [FAH] now: 1386786858, last helper launched at: 1386754230
  239. Wed Dec 11 18:34:18 2013 (0) resolving '128.143.231.201:8080'
  240. Wed Dec 11 18:34:18 2013 (0) Connecting to: 128.143.231.201:8080
  241. Wed Dec 11 18:34:18 2013 (0) Connected.
  242. Wed Dec 11 18:48:33 2013 (0) Complete request sent.
  243. Wed Dec 11 18:48:51 2013 (0) Remote connection closed (rbsize: 0).
  244. Wed Dec 11 18:48:51 2013 (0) Local: received 91369062 bytes, sent 634 bytes
  245. Wed Dec 11 18:48:51 2013 (0) Remote: received 634 bytes, sent 91369062 bytes
  246. Wed Dec 11 18:48:51 2013 (0) Ratelimit: sent 91369062 byte(s) in 873.046 seconds, 104655 Bps (102.20 kBps)
复制代码
回复

使用道具 举报

 楼主| 发表于 2013-12-12 18:10:10 | 显示全部楼层
cuda 发表于 2013-12-9 14:31
先用tar解压,然后直接输入make即可编译。
我编译了一个,不过编译过程中有一些警告,看看能不能用?

看是是单位网络问题,在家里虚拟机测试效果很好
  1. Thu Dec 12 09:52:21 2013 Langouste3 15.17 (compiled Mon Dec 9 14:24:53 CST 2013 by root@pc1)
  2. Thu Dec 12 09:52:21 2013 Langouste3 comes with ABSOLUTELY NO WARRANTY; for details
  3. Thu Dec 12 09:52:21 2013 see `COPYING.txt' file located in source directory
  4. Thu Dec 12 09:52:21 2013 Logging to /usr/local/fah/langouste.log
  5. Thu Dec 12 09:52:21 2013 Listening on 127.0.0.1:8080
  6. Thu Dec 12 09:52:21 2013 Default Langouste helper temp directory: /dev/shm/langouste-root/
  7. Thu Dec 12 09:52:21 2013 Going into background...
  8. Thu Dec 12 09:55:00 2013 Accepted connection from 127.0.0.1:39164
  9. Thu Dec 12 09:55:00 2013 PID for socket: 907
  10. Thu Dec 12 09:55:00 2013 PID 907: issending: 0
  11. Thu Dec 12 09:55:00 2013 (0) Connection from 127.0.0.1:39164 -- slot 0
  12. Thu Dec 12 09:55:00 2013 (0) [FAH] PID 907 is contacting main assignment server
  13. Thu Dec 12 09:55:00 2013 (0) resolving 'assign.stanford.edu:8080'
  14. Thu Dec 12 09:55:00 2013 (0) Connecting to: 171.67.108.200:8080
  15. Thu Dec 12 09:55:00 2013 Accepted connection from 127.0.0.1:39165
  16. Thu Dec 12 09:55:00 2013 PID for socket: 907
  17. Thu Dec 12 09:55:00 2013 PID 907: issending: 0
  18. Thu Dec 12 09:55:00 2013 (1) Connection from 127.0.0.1:39165 -- slot 1
  19. Thu Dec 12 09:55:00 2013 (1) [FAH] PID 907 is most likely contacting WU server, content length: 91702032
  20. Thu Dec 12 09:55:00 2013 (1) [FAH] Helper pid: -1
  21. Thu Dec 12 09:55:00 2013 (1) [FAH] PID 907: numcores: 0
  22. Thu Dec 12 09:55:00 2013 (1) [FAH] now: 1386842100, last helper launched at: 0
  23. Thu Dec 12 09:55:00 2013 (1) [FAH] Launching helper: '/proc/907/cwd/langouste-helper.sh' (exe name: '/usr/local/fah/fah6')...
  24. Thu Dec 12 09:55:00 2013 (1) [FAH] Forked 910
  25. Thu Dec 12 09:55:00 2013 (1) Local: received 16384 bytes, sent 0 bytes
  26. Thu Dec 12 09:55:00 2013 Accepted connection from 127.0.0.1:39167
  27. Thu Dec 12 09:55:00 2013 PID for socket: 907
  28. Thu Dec 12 09:55:00 2013 PID 907: issending: 0
  29. Thu Dec 12 09:55:00 2013 (1) Connection from 127.0.0.1:39167 -- slot 1
  30. Thu Dec 12 09:55:00 2013 (1) [FAH] PID 907 is most likely contacting WU server, content length: 91702032
  31. Thu Dec 12 09:55:00 2013 (1) [FAH] Helper pid: -1
  32. Thu Dec 12 09:55:00 2013 (1) [FAH] PID 907: numcores: 0
  33. Thu Dec 12 09:55:00 2013 (1) [FAH] now: 1386842100, last helper launched at: 1386842100
  34. Thu Dec 12 09:55:00 2013 (1) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  35. Thu Dec 12 09:55:00 2013 (1) Local: received 16384 bytes, sent 0 bytes
  36. Thu Dec 12 09:55:00 2013 Accepted connection from 127.0.0.1:39168
  37. Thu Dec 12 09:55:00 2013 PID for socket: 907
  38. Thu Dec 12 09:55:00 2013 PID 907: issending: 0
  39. Thu Dec 12 09:55:00 2013 (1) Connection from 127.0.0.1:39168 -- slot 1
  40. Thu Dec 12 09:55:00 2013 (1) [FAH] PID 907 is most likely contacting WU server, content length: 91702032
  41. Thu Dec 12 09:55:00 2013 (1) [FAH] Helper pid: -1
  42. Thu Dec 12 09:55:00 2013 (1) [FAH] PID 907: numcores: 0
  43. Thu Dec 12 09:55:00 2013 (1) [FAH] now: 1386842100, last helper launched at: 1386842100
  44. Thu Dec 12 09:55:00 2013 (1) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  45. Thu Dec 12 09:55:00 2013 (1) Local: received 16384 bytes, sent 0 bytes
  46. Thu Dec 12 09:55:00 2013 Accepted connection from 127.0.0.1:39169
  47. Thu Dec 12 09:55:00 2013 PID for socket: 907
  48. Thu Dec 12 09:55:00 2013 PID 907: issending: 0
  49. Thu Dec 12 09:55:00 2013 (1) Connection from 127.0.0.1:39169 -- slot 1
  50. Thu Dec 12 09:55:00 2013 (1) [FAH] PID 907 is most likely contacting WU server, content length: 91702032
  51. Thu Dec 12 09:55:00 2013 (1) [FAH] Helper pid: -1
  52. Thu Dec 12 09:55:00 2013 (1) [FAH] PID 907: numcores: 0
  53. Thu Dec 12 09:55:00 2013 (1) [FAH] now: 1386842100, last helper launched at: 1386842100
  54. Thu Dec 12 09:55:00 2013 (1) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  55. Thu Dec 12 09:55:00 2013 (1) Local: received 16384 bytes, sent 0 bytes
  56. Thu Dec 12 09:55:00 2013 (0) Connected.
  57. Thu Dec 12 09:55:01 2013 (0) Local connection closed (bsize: 0).
  58. Thu Dec 12 09:55:01 2013 (0) Local: received 559 bytes, sent 396 bytes
  59. Thu Dec 12 09:55:01 2013 (0) Remote: received 396 bytes, sent 559 bytes
  60. Thu Dec 12 09:55:01 2013 Accepted connection from 127.0.0.1:39170
  61. Thu Dec 12 09:55:01 2013 PID for socket: 907
  62. Thu Dec 12 09:55:01 2013 PID 907: issending: 0
  63. Thu Dec 12 09:55:01 2013 (0) Connection from 127.0.0.1:39170 -- slot 0
  64. Thu Dec 12 09:55:01 2013 (0) [FAH] PID 907 is most likely contacting WU server, content length: 512
  65. Thu Dec 12 09:55:01 2013 (0) resolving '128.143.199.97:8080'
  66. Thu Dec 12 09:55:01 2013 (0) Connecting to: 128.143.199.97:8080
  67. Thu Dec 12 09:55:01 2013 (0) Connected.
  68. Thu Dec 12 09:55:05 2013 (0) Remote connection closed (rbsize: 0).
  69. Thu Dec 12 09:55:05 2013 (0) Local: received 629 bytes, sent 2167238 bytes
  70. Thu Dec 12 09:55:05 2013 (0) Remote: received 2167238 bytes, sent 629 bytes
  71. Thu Dec 12 09:56:00 2013 Accepted connection from 127.0.0.1:39172
  72. Thu Dec 12 09:56:00 2013 PID for socket: 945
  73. Thu Dec 12 09:56:00 2013 PID 945: issending: 1
  74. Thu Dec 12 09:56:00 2013 (0) Connection from 127.0.0.1:39172 -- slot 0
  75. Thu Dec 12 09:56:00 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 91702032
  76. Thu Dec 12 09:56:00 2013 (0) resolving '128.143.231.201:8080'
  77. Thu Dec 12 09:56:00 2013 (0) Connecting to: 128.143.231.201:8080
  78. Thu Dec 12 09:56:02 2013 (0) Connected.
  79. Thu Dec 12 09:58:11 2013 (0) Remote connection closed (rbsize: 0).
  80. Thu Dec 12 09:58:11 2013 (0) Local: received 3801212 bytes, sent 0 bytes
  81. Thu Dec 12 09:58:11 2013 (0) Remote: received 0 bytes, sent 3797176 bytes
  82. Thu Dec 12 09:58:11 2013 (0) Ratelimit: sent 3797176 byte(s) in 129.505 seconds, 29320 Bps (28.63 kBps)
  83. Thu Dec 12 09:58:11 2013 Accepted connection from 127.0.0.1:39174
  84. Thu Dec 12 09:58:11 2013 PID for socket: 945
  85. Thu Dec 12 09:58:11 2013 PID 945: issending: 1
  86. Thu Dec 12 09:58:11 2013 (0) Connection from 127.0.0.1:39174 -- slot 0
  87. Thu Dec 12 09:58:11 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 91702032
  88. Thu Dec 12 09:58:11 2013 (0) resolving '128.143.231.201:80'
  89. Thu Dec 12 09:58:11 2013 (0) Connecting to: 128.143.231.201:80
  90. Thu Dec 12 09:58:12 2013 (0) Connected.
  91. Thu Dec 12 10:05:37 2013 (0) Complete request sent.
  92. Thu Dec 12 10:05:51 2013 (0) Remote connection closed (rbsize: 0).
  93. Thu Dec 12 10:05:51 2013 (0) Local: received 91702152 bytes, sent 634 bytes
  94. Thu Dec 12 10:05:51 2013 (0) Remote: received 634 bytes, sent 91702152 bytes
  95. Thu Dec 12 10:05:51 2013 (0) Ratelimit: sent 91702152 byte(s) in 459.112 seconds, 199738 Bps (195.05 kBps)
复制代码
回复

使用道具 举报

 楼主| 发表于 2013-12-15 20:40:31 | 显示全部楼层
本帖最后由 金鹏 于 2013-12-16 09:57 编辑


呼叫@cuda    @xiaoren6412 兄弟编译langouste3-15.18代理程序


Friday, December 13, 2013Langouste 15.18 is now available


G'day!

I'm pleased to announce availability of Langouste 15.18.

It works around Folding@Home bug that can, under certain conditions, prevent the client from retrieving WUs until queue.dat file is removed or client is uninstalled and reinstalled again.

If you're running Ubuntu Folding Appliance or followed musky's Ubuntu Desktop Installation Guide, follow the steps below:
  • Log in
  • Open new terminal (if using GUI)
  • Run:

    sudo fahinstall

    Naturally, provide your password if so requested.
  • Fahinstall should complete without error, print your hostname, IP address and request a reboot. Given the scope of the upgrade, a reboot is not required.
  • You're done :-)
If you're running standalone/custom setup, follow upgrade Langouste per instructions on Langouste's page.

Feel free to share your comments below and subscribe if you'd like to be kept in the loop on this and other developments!

Langouste is a Folding@Home WU upload/download decoupler with number of additional features. To learn more, visitLangouste's page.

Posted by tearat 4:39 PM Email ThisBlogThis!Share to TwitterShare to Facebook



Labels: langouste





回复

使用道具 举报

发表于 2013-12-16 10:58:02 | 显示全部楼层
金鹏 发表于 2013-12-15 20:40
呼叫@cuda    @xiaoren6412  兄弟编译langouste3-15.18代理程序

langouste3.rar (28.56 KB, 下载次数: 1853)

评分

参与人数 1基本分 +12 收起 理由
金鹏 + 12 赞一个!

查看全部评分

回复

使用道具 举报

 楼主| 发表于 2013-12-16 14:26:07 | 显示全部楼层

感谢兄弟,把15.17换成15.18了
回复

使用道具 举报

 楼主| 发表于 2013-12-17 12:03:17 | 显示全部楼层

15.18堪称完美了,速度也快了些
  1. Mon Dec 16 14:23:03 2013 Langouste3 15.18 (compiled Mon Dec 16 10:53:29 CST 2013 by root@pc1)
  2. Mon Dec 16 14:23:03 2013 Langouste3 comes with ABSOLUTELY NO WARRANTY; for details
  3. Mon Dec 16 14:23:03 2013 see `COPYING.txt' file located in source directory
  4. Mon Dec 16 14:23:03 2013 Logging to /usr/local/fah/langouste.log
  5. Mon Dec 16 14:23:03 2013 Listening on 127.0.0.1:8080
  6. Mon Dec 16 14:23:03 2013 Default Langouste helper temp directory: /dev/shm/langouste-root/
  7. Mon Dec 16 14:23:03 2013 Going into background...
  8. Tue Dec 17 00:58:18 2013 Accepted connection from 127.0.0.1:48321
  9. Tue Dec 17 00:58:18 2013 PID for socket: 513
  10. Tue Dec 17 00:58:18 2013 PID 513: issending: 0
  11. Tue Dec 17 00:58:18 2013 (0) Connection from 127.0.0.1:48321 -- slot 0
  12. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  13. Tue Dec 17 00:58:18 2013 (0) pf: -0.000000
  14. Tue Dec 17 00:58:18 2013 (0) invalid pf, fixing...
  15. Tue Dec 17 00:58:18 2013 (0) new pf: 0.761575
  16. Tue Dec 17 00:58:18 2013 (0) [FAH] Helper pid: -1
  17. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513: numcores: 0
  18. Tue Dec 17 00:58:18 2013 (0) [FAH] now: 1387241898, last helper launched at: 0
  19. Tue Dec 17 00:58:18 2013 (0) [FAH] Launching helper: '/proc/513/cwd/langouste-helper.sh' (exe name: '/usr/local/fah/fah6')...
  20. Tue Dec 17 00:58:18 2013 (0) [FAH] Forked 660
  21. Tue Dec 17 00:58:18 2013 (0) Local: received 16384 bytes, sent 0 bytes
  22. Tue Dec 17 00:58:18 2013 Accepted connection from 127.0.0.1:48322
  23. Tue Dec 17 00:58:18 2013 PID for socket: 513
  24. Tue Dec 17 00:58:18 2013 PID 513: issending: 0
  25. Tue Dec 17 00:58:18 2013 (0) Connection from 127.0.0.1:48322 -- slot 0
  26. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  27. Tue Dec 17 00:58:18 2013 (0) pf: 0.761575
  28. Tue Dec 17 00:58:18 2013 (0) [FAH] Helper pid: -1
  29. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513: numcores: 0
  30. Tue Dec 17 00:58:18 2013 (0) [FAH] now: 1387241898, last helper launched at: 1387241898
  31. Tue Dec 17 00:58:18 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  32. Tue Dec 17 00:58:18 2013 (0) Local: received 16384 bytes, sent 0 bytes
  33. Tue Dec 17 00:58:18 2013 Accepted connection from 127.0.0.1:48323
  34. Tue Dec 17 00:58:18 2013 PID for socket: 513
  35. Tue Dec 17 00:58:18 2013 PID 513: issending: 0
  36. Tue Dec 17 00:58:18 2013 (0) Connection from 127.0.0.1:48323 -- slot 0
  37. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  38. Tue Dec 17 00:58:18 2013 (0) pf: -0.000000
  39. Tue Dec 17 00:58:18 2013 (0) invalid pf, fixing...
  40. Tue Dec 17 00:58:18 2013 (0) new pf: 0.761575
  41. Tue Dec 17 00:58:18 2013 (0) [FAH] Helper pid: -1
  42. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513: numcores: 0
  43. Tue Dec 17 00:58:18 2013 (0) [FAH] now: 1387241898, last helper launched at: 1387241898
  44. Tue Dec 17 00:58:18 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  45. Tue Dec 17 00:58:18 2013 (0) Local: received 16384 bytes, sent 0 bytes
  46. Tue Dec 17 00:58:18 2013 Accepted connection from 127.0.0.1:48324
  47. Tue Dec 17 00:58:18 2013 PID for socket: 513
  48. Tue Dec 17 00:58:18 2013 PID 513: issending: 0
  49. Tue Dec 17 00:58:18 2013 (0) Connection from 127.0.0.1:48324 -- slot 0
  50. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  51. Tue Dec 17 00:58:18 2013 (0) pf: 0.761575
  52. Tue Dec 17 00:58:18 2013 (0) [FAH] Helper pid: -1
  53. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513: numcores: 0
  54. Tue Dec 17 00:58:18 2013 (0) [FAH] now: 1387241898, last helper launched at: 1387241898
  55. Tue Dec 17 00:58:18 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  56. Tue Dec 17 00:58:18 2013 (0) Local: received 16384 bytes, sent 0 bytes
  57. Tue Dec 17 00:58:18 2013 Accepted connection from 127.0.0.1:48325
  58. Tue Dec 17 00:58:18 2013 PID for socket: 513
  59. Tue Dec 17 00:58:18 2013 PID 513: issending: 0
  60. Tue Dec 17 00:58:18 2013 (0) Connection from 127.0.0.1:48325 -- slot 0
  61. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  62. Tue Dec 17 00:58:18 2013 (0) pf: 0.761575
  63. Tue Dec 17 00:58:18 2013 (0) [FAH] Helper pid: -1
  64. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513: numcores: 0
  65. Tue Dec 17 00:58:18 2013 (0) [FAH] now: 1387241898, last helper launched at: 1387241898
  66. Tue Dec 17 00:58:18 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  67. Tue Dec 17 00:58:18 2013 (0) Local: received 16384 bytes, sent 0 bytes
  68. Tue Dec 17 00:58:18 2013 Accepted connection from 127.0.0.1:48326
  69. Tue Dec 17 00:58:18 2013 PID for socket: 513
  70. Tue Dec 17 00:58:18 2013 PID 513: issending: 0
  71. Tue Dec 17 00:58:18 2013 (0) Connection from 127.0.0.1:48326 -- slot 0
  72. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  73. Tue Dec 17 00:58:18 2013 (0) pf: 0.761575
  74. Tue Dec 17 00:58:18 2013 (0) [FAH] Helper pid: -1
  75. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513: numcores: 0
  76. Tue Dec 17 00:58:18 2013 (0) [FAH] now: 1387241898, last helper launched at: 1387241898
  77. Tue Dec 17 00:58:18 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  78. Tue Dec 17 00:58:18 2013 (0) Local: received 16384 bytes, sent 0 bytes
  79. Tue Dec 17 00:58:18 2013 Accepted connection from 127.0.0.1:48327
  80. Tue Dec 17 00:58:18 2013 PID for socket: 513
  81. Tue Dec 17 00:58:18 2013 PID 513: issending: 0
  82. Tue Dec 17 00:58:18 2013 (0) Connection from 127.0.0.1:48327 -- slot 0
  83. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513 is contacting main assignment server
  84. Tue Dec 17 00:58:18 2013 (0) pf: -0.000000
  85. Tue Dec 17 00:58:18 2013 (0) invalid pf, fixing...
  86. Tue Dec 17 00:58:18 2013 (0) new pf: 0.761575
  87. Tue Dec 17 00:58:18 2013 (0) Local: received 559 bytes, sent 0 bytes
  88. Tue Dec 17 00:58:18 2013 Accepted connection from 127.0.0.1:48328
  89. Tue Dec 17 00:58:18 2013 PID for socket: 513
  90. Tue Dec 17 00:58:18 2013 PID 513: issending: 0
  91. Tue Dec 17 00:58:18 2013 (0) Connection from 127.0.0.1:48328 -- slot 0
  92. Tue Dec 17 00:58:18 2013 (0) [FAH] PID 513 is contacting main assignment server
  93. Tue Dec 17 00:58:18 2013 (0) previous assignment interrupted due to invalid pf, interrupting again...
  94. Tue Dec 17 00:58:18 2013 (0) Local: received 557 bytes, sent 0 bytes
  95. Tue Dec 17 00:58:27 2013 Accepted connection from 127.0.0.1:48329
  96. Tue Dec 17 00:58:27 2013 PID for socket: 513
  97. Tue Dec 17 00:58:27 2013 PID 513: issending: 0
  98. Tue Dec 17 00:58:27 2013 (0) Connection from 127.0.0.1:48329 -- slot 0
  99. Tue Dec 17 00:58:27 2013 (0) [FAH] PID 513 is contacting main assignment server
  100. Tue Dec 17 00:58:27 2013 (0) pf: 0.761575
  101. Tue Dec 17 00:58:27 2013 (0) resolving 'assign.stanford.edu:8080'
  102. Tue Dec 17 00:58:27 2013 (0) Connecting to: 171.67.108.200:8080
  103. Tue Dec 17 00:58:27 2013 (0) Connected.
  104. Tue Dec 17 00:58:28 2013 (0) Local connection closed (bsize: 0).
  105. Tue Dec 17 00:58:28 2013 (0) Local: received 559 bytes, sent 396 bytes
  106. Tue Dec 17 00:58:28 2013 (0) Remote: received 396 bytes, sent 559 bytes
  107. Tue Dec 17 00:58:28 2013 Accepted connection from 127.0.0.1:48331
  108. Tue Dec 17 00:58:28 2013 PID for socket: 513
  109. Tue Dec 17 00:58:28 2013 PID 513: issending: 0
  110. Tue Dec 17 00:58:28 2013 (0) Connection from 127.0.0.1:48331 -- slot 0
  111. Tue Dec 17 00:58:28 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 512
  112. Tue Dec 17 00:58:28 2013 (0) resolving '128.143.231.201:8080'
  113. Tue Dec 17 00:58:28 2013 (0) Connecting to: 128.143.231.201:8080
  114. Tue Dec 17 00:58:28 2013 (0) Connected.
  115. Tue Dec 17 00:59:17 2013 (0) Remote connection closed (rbsize: 0).
  116. Tue Dec 17 00:59:17 2013 (0) Local: received 631 bytes, sent 30335181 bytes
  117. Tue Dec 17 00:59:17 2013 (0) Remote: received 30335181 bytes, sent 631 bytes
  118. Tue Dec 17 00:59:17 2013 Accepted connection from 127.0.0.1:48333
  119. Tue Dec 17 00:59:17 2013 PID for socket: 513
  120. Tue Dec 17 00:59:17 2013 PID 513: issending: 0
  121. Tue Dec 17 00:59:17 2013 (0) Connection from 127.0.0.1:48333 -- slot 0
  122. Tue Dec 17 00:59:17 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  123. Tue Dec 17 00:59:17 2013 (0) pf: -0.000000
  124. Tue Dec 17 00:59:17 2013 (0) invalid pf, fixing...
  125. Tue Dec 17 00:59:17 2013 (0) new pf: 0.761575
  126. Tue Dec 17 00:59:17 2013 (0) [FAH] Helper pid: -1
  127. Tue Dec 17 00:59:17 2013 (0) [FAH] PID 513: numcores: 0
  128. Tue Dec 17 00:59:17 2013 (0) [FAH] now: 1387241957, last helper launched at: 1387241898
  129. Tue Dec 17 00:59:17 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  130. Tue Dec 17 00:59:17 2013 (0) Local: received 16384 bytes, sent 0 bytes
  131. Tue Dec 17 00:59:17 2013 Accepted connection from 127.0.0.1:48334
  132. Tue Dec 17 00:59:17 2013 PID for socket: 513
  133. Tue Dec 17 00:59:17 2013 PID 513: issending: 0
  134. Tue Dec 17 00:59:17 2013 (0) Connection from 127.0.0.1:48334 -- slot 0
  135. Tue Dec 17 00:59:17 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  136. Tue Dec 17 00:59:17 2013 (0) pf: 0.761575
  137. Tue Dec 17 00:59:17 2013 (0) [FAH] Helper pid: -1
  138. Tue Dec 17 00:59:17 2013 (0) [FAH] PID 513: numcores: 0
  139. Tue Dec 17 00:59:17 2013 (0) [FAH] now: 1387241957, last helper launched at: 1387241898
  140. Tue Dec 17 00:59:17 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  141. Tue Dec 17 00:59:17 2013 (0) Local: received 16384 bytes, sent 0 bytes
  142. Tue Dec 17 00:59:17 2013 Accepted connection from 127.0.0.1:48335
  143. Tue Dec 17 00:59:17 2013 PID for socket: 513
  144. Tue Dec 17 00:59:17 2013 PID 513: issending: 0
  145. Tue Dec 17 00:59:17 2013 (0) Connection from 127.0.0.1:48335 -- slot 0
  146. Tue Dec 17 00:59:17 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  147. Tue Dec 17 00:59:17 2013 (0) pf: 0.761575
  148. Tue Dec 17 00:59:17 2013 (0) [FAH] Helper pid: -1
  149. Tue Dec 17 00:59:17 2013 (0) [FAH] PID 513: numcores: 0
  150. Tue Dec 17 00:59:17 2013 (0) [FAH] now: 1387241957, last helper launched at: 1387241898
  151. Tue Dec 17 00:59:17 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  152. Tue Dec 17 00:59:17 2013 (0) Local: received 16384 bytes, sent 0 bytes
  153. Tue Dec 17 00:59:17 2013 Accepted connection from 127.0.0.1:48336
  154. Tue Dec 17 00:59:17 2013 PID for socket: 513
  155. Tue Dec 17 00:59:17 2013 PID 513: issending: 0
  156. Tue Dec 17 00:59:17 2013 (0) Connection from 127.0.0.1:48336 -- slot 0
  157. Tue Dec 17 00:59:17 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91634306
  158. Tue Dec 17 00:59:17 2013 (0) pf: 0.761575
  159. Tue Dec 17 00:59:17 2013 (0) [FAH] Helper pid: -1
  160. Tue Dec 17 00:59:17 2013 (0) [FAH] PID 513: numcores: 0
  161. Tue Dec 17 00:59:17 2013 (0) [FAH] now: 1387241957, last helper launched at: 1387241898
  162. Tue Dec 17 00:59:17 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  163. Tue Dec 17 00:59:17 2013 (0) Local: received 16384 bytes, sent 0 bytes
  164. Tue Dec 17 00:59:19 2013 Accepted connection from 127.0.0.1:48337
  165. Tue Dec 17 00:59:19 2013 PID for socket: 677
  166. Tue Dec 17 00:59:19 2013 PID 677: issending: 1
  167. Tue Dec 17 00:59:19 2013 (0) Connection from 127.0.0.1:48337 -- slot 0
  168. Tue Dec 17 00:59:19 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 91634306
  169. Tue Dec 17 00:59:19 2013 (0) resolving '128.143.231.201:8080'
  170. Tue Dec 17 00:59:19 2013 (0) Connecting to: 128.143.231.201:8080
  171. Tue Dec 17 00:59:19 2013 (0) Connected.
  172. Tue Dec 17 01:10:29 2013 (0) Complete request sent.
  173. Tue Dec 17 01:10:44 2013 (0) Remote connection closed (rbsize: 0).
  174. Tue Dec 17 01:10:44 2013 (0) Local: received 91634430 bytes, sent 634 bytes
  175. Tue Dec 17 01:10:44 2013 (0) Remote: received 634 bytes, sent 91634430 bytes
  176. Tue Dec 17 01:10:44 2013 (0) Ratelimit: sent 91634430 byte(s) in 685.461 seconds, 133682 Bps (130.54 kBps)
复制代码
下面是15.17的
  1. Sun Dec 15 14:33:57 2013 Langouste3 15.17 (compiled Mon Dec 9 14:24:53 CST 2013 by root@pc1)
  2. Sun Dec 15 14:33:57 2013 Langouste3 comes with ABSOLUTELY NO WARRANTY; for details
  3. Sun Dec 15 14:33:57 2013 see `COPYING.txt' file located in source directory
  4. Sun Dec 15 14:33:57 2013 Logging to /usr/local/fah/langouste.log
  5. Sun Dec 15 14:33:57 2013 Listening on 127.0.0.1:8080
  6. Sun Dec 15 14:33:57 2013 Default Langouste helper temp directory: /dev/shm/langouste-root/
  7. Sun Dec 15 14:33:57 2013 Going into background...
  8. Sun Dec 15 10:58:15 2013 Accepted connection from 127.0.0.1:37467
  9. Sun Dec 15 10:58:15 2013 PID for socket: 513
  10. Sun Dec 15 10:58:15 2013 PID 513: issending: 0
  11. Sun Dec 15 10:58:15 2013 (0) Connection from 127.0.0.1:37467 -- slot 0
  12. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  13. Sun Dec 15 10:58:15 2013 (0) [FAH] Helper pid: -1
  14. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513: numcores: 0
  15. Sun Dec 15 10:58:15 2013 (0) [FAH] now: 1387105095, last helper launched at: 0
  16. Sun Dec 15 10:58:15 2013 (0) [FAH] Launching helper: '/proc/513/cwd/langouste-helper.sh' (exe name: '/usr/local/fah/fah6')...
  17. Sun Dec 15 10:58:15 2013 (0) [FAH] Forked 696
  18. Sun Dec 15 10:58:15 2013 (0) Local: received 16384 bytes, sent 0 bytes
  19. Sun Dec 15 10:58:15 2013 Accepted connection from 127.0.0.1:37468
  20. Sun Dec 15 10:58:15 2013 PID for socket: 513
  21. Sun Dec 15 10:58:15 2013 PID 513: issending: 0
  22. Sun Dec 15 10:58:15 2013 (0) Connection from 127.0.0.1:37468 -- slot 0
  23. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  24. Sun Dec 15 10:58:15 2013 (0) [FAH] Helper pid: -1
  25. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513: numcores: 0
  26. Sun Dec 15 10:58:15 2013 (0) [FAH] now: 1387105095, last helper launched at: 1387105095
  27. Sun Dec 15 10:58:15 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  28. Sun Dec 15 10:58:15 2013 (0) Local: received 16384 bytes, sent 0 bytes
  29. Sun Dec 15 10:58:15 2013 Accepted connection from 127.0.0.1:37469
  30. Sun Dec 15 10:58:15 2013 PID for socket: 513
  31. Sun Dec 15 10:58:15 2013 PID 513: issending: 0
  32. Sun Dec 15 10:58:15 2013 (0) Connection from 127.0.0.1:37469 -- slot 0
  33. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  34. Sun Dec 15 10:58:15 2013 (0) [FAH] Helper pid: -1
  35. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513: numcores: 0
  36. Sun Dec 15 10:58:15 2013 (0) [FAH] now: 1387105095, last helper launched at: 1387105095
  37. Sun Dec 15 10:58:15 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  38. Sun Dec 15 10:58:15 2013 (0) Local: received 16384 bytes, sent 0 bytes
  39. Sun Dec 15 10:58:15 2013 Accepted connection from 127.0.0.1:37470
  40. Sun Dec 15 10:58:15 2013 PID for socket: 513
  41. Sun Dec 15 10:58:15 2013 PID 513: issending: 0
  42. Sun Dec 15 10:58:15 2013 (0) Connection from 127.0.0.1:37470 -- slot 0
  43. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  44. Sun Dec 15 10:58:15 2013 (0) [FAH] Helper pid: -1
  45. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513: numcores: 0
  46. Sun Dec 15 10:58:15 2013 (0) [FAH] now: 1387105095, last helper launched at: 1387105095
  47. Sun Dec 15 10:58:15 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  48. Sun Dec 15 10:58:15 2013 (0) Local: received 16384 bytes, sent 0 bytes
  49. Sun Dec 15 10:58:15 2013 Accepted connection from 127.0.0.1:37471
  50. Sun Dec 15 10:58:15 2013 PID for socket: 513
  51. Sun Dec 15 10:58:15 2013 PID 513: issending: 0
  52. Sun Dec 15 10:58:15 2013 (0) Connection from 127.0.0.1:37471 -- slot 0
  53. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  54. Sun Dec 15 10:58:15 2013 (0) [FAH] Helper pid: -1
  55. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513: numcores: 0
  56. Sun Dec 15 10:58:15 2013 (0) [FAH] now: 1387105095, last helper launched at: 1387105095
  57. Sun Dec 15 10:58:15 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  58. Sun Dec 15 10:58:15 2013 (0) Local: received 16384 bytes, sent 0 bytes
  59. Sun Dec 15 10:58:15 2013 Accepted connection from 127.0.0.1:37472
  60. Sun Dec 15 10:58:15 2013 PID for socket: 513
  61. Sun Dec 15 10:58:15 2013 PID 513: issending: 0
  62. Sun Dec 15 10:58:15 2013 (0) Connection from 127.0.0.1:37472 -- slot 0
  63. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  64. Sun Dec 15 10:58:15 2013 (0) [FAH] Helper pid: -1
  65. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513: numcores: 0
  66. Sun Dec 15 10:58:15 2013 (0) [FAH] now: 1387105095, last helper launched at: 1387105095
  67. Sun Dec 15 10:58:15 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  68. Sun Dec 15 10:58:15 2013 (0) Local: received 16384 bytes, sent 0 bytes
  69. Sun Dec 15 10:58:15 2013 Accepted connection from 127.0.0.1:37473
  70. Sun Dec 15 10:58:15 2013 PID for socket: 513
  71. Sun Dec 15 10:58:15 2013 PID 513: issending: 0
  72. Sun Dec 15 10:58:15 2013 (0) Connection from 127.0.0.1:37473 -- slot 0
  73. Sun Dec 15 10:58:15 2013 (0) [FAH] PID 513 is contacting main assignment server
  74. Sun Dec 15 10:58:15 2013 (0) resolving 'assign.stanford.edu:8080'
  75. Sun Dec 15 10:58:16 2013 (0) Connecting to: 171.67.108.200:8080
  76. Sun Dec 15 10:58:16 2013 (0) Connected.
  77. Sun Dec 15 10:58:16 2013 (0) Local connection closed (bsize: 0).
  78. Sun Dec 15 10:58:16 2013 (0) Local: received 559 bytes, sent 396 bytes
  79. Sun Dec 15 10:58:16 2013 (0) Remote: received 396 bytes, sent 559 bytes
  80. Sun Dec 15 10:58:16 2013 Accepted connection from 127.0.0.1:37475
  81. Sun Dec 15 10:58:16 2013 PID for socket: 513
  82. Sun Dec 15 10:58:16 2013 PID 513: issending: 0
  83. Sun Dec 15 10:58:16 2013 (0) Connection from 127.0.0.1:37475 -- slot 0
  84. Sun Dec 15 10:58:16 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 512
  85. Sun Dec 15 10:58:16 2013 (0) resolving '128.143.231.201:8080'
  86. Sun Dec 15 10:58:16 2013 (0) Connecting to: 128.143.231.201:8080
  87. Sun Dec 15 10:58:17 2013 (0) Connected.
  88. Sun Dec 15 10:59:16 2013 Accepted connection from 127.0.0.1:37477
  89. Sun Dec 15 10:59:16 2013 PID for socket: 710
  90. Sun Dec 15 10:59:16 2013 PID 710: issending: 1
  91. Sun Dec 15 10:59:16 2013 (1) Connection from 127.0.0.1:37477 -- slot 1
  92. Sun Dec 15 10:59:16 2013 (1) [FAH] PID -1 is most likely contacting WU server, content length: 91646362
  93. Sun Dec 15 10:59:16 2013 (1) resolving '128.143.231.201:8080'
  94. Sun Dec 15 10:59:16 2013 (1) Connecting to: 128.143.231.201:8080
  95. Sun Dec 15 10:59:16 2013 (1) Connected.
  96. Sun Dec 15 10:59:18 2013 (0) Remote connection closed (rbsize: 0).
  97. Sun Dec 15 10:59:18 2013 (0) Local: received 631 bytes, sent 30237531 bytes
  98. Sun Dec 15 10:59:18 2013 (0) Remote: received 30237531 bytes, sent 631 bytes
  99. Sun Dec 15 10:59:18 2013 Accepted connection from 127.0.0.1:37479
  100. Sun Dec 15 10:59:18 2013 PID for socket: 513
  101. Sun Dec 15 10:59:18 2013 PID 513: issending: 0
  102. Sun Dec 15 10:59:18 2013 (0) Connection from 127.0.0.1:37479 -- slot 0
  103. Sun Dec 15 10:59:18 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  104. Sun Dec 15 10:59:18 2013 (0) [FAH] Helper pid: 710
  105. Sun Dec 15 10:59:18 2013 (0) [FAH] PID 513: numcores: 0
  106. Sun Dec 15 10:59:18 2013 (0) [FAH] Helper (pid 710) already running
  107. Sun Dec 15 10:59:18 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  108. Sun Dec 15 10:59:18 2013 (0) Local: received 16384 bytes, sent 0 bytes
  109. Sun Dec 15 10:59:18 2013 Accepted connection from 127.0.0.1:37480
  110. Sun Dec 15 10:59:18 2013 PID for socket: 513
  111. Sun Dec 15 10:59:18 2013 PID 513: issending: 0
  112. Sun Dec 15 10:59:18 2013 (0) Connection from 127.0.0.1:37480 -- slot 0
  113. Sun Dec 15 10:59:18 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  114. Sun Dec 15 10:59:18 2013 (0) [FAH] Helper pid: 710
  115. Sun Dec 15 10:59:18 2013 (0) [FAH] PID 513: numcores: 0
  116. Sun Dec 15 10:59:18 2013 (0) [FAH] Helper (pid 710) already running
  117. Sun Dec 15 10:59:18 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  118. Sun Dec 15 10:59:18 2013 (0) Local: received 16384 bytes, sent 0 bytes
  119. Sun Dec 15 10:59:19 2013 Accepted connection from 127.0.0.1:37481
  120. Sun Dec 15 10:59:19 2013 PID for socket: 513
  121. Sun Dec 15 10:59:19 2013 PID 513: issending: 0
  122. Sun Dec 15 10:59:19 2013 (0) Connection from 127.0.0.1:37481 -- slot 0
  123. Sun Dec 15 10:59:19 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  124. Sun Dec 15 10:59:19 2013 (0) [FAH] Helper pid: 710
  125. Sun Dec 15 10:59:19 2013 (0) [FAH] PID 513: numcores: 0
  126. Sun Dec 15 10:59:19 2013 (0) [FAH] Helper (pid 710) already running
  127. Sun Dec 15 10:59:19 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  128. Sun Dec 15 10:59:19 2013 (0) Local: received 16384 bytes, sent 0 bytes
  129. Sun Dec 15 10:59:19 2013 Accepted connection from 127.0.0.1:37482
  130. Sun Dec 15 10:59:19 2013 PID for socket: 513
  131. Sun Dec 15 10:59:19 2013 PID 513: issending: 0
  132. Sun Dec 15 10:59:19 2013 (0) Connection from 127.0.0.1:37482 -- slot 0
  133. Sun Dec 15 10:59:19 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91646362
  134. Sun Dec 15 10:59:19 2013 (0) [FAH] Helper pid: 710
  135. Sun Dec 15 10:59:19 2013 (0) [FAH] PID 513: numcores: 0
  136. Sun Dec 15 10:59:19 2013 (0) [FAH] Helper (pid 710) already running
  137. Sun Dec 15 10:59:19 2013 (0) [FAH] If you're sure that's not the case, please remove /tmp/fah/f1
  138. Sun Dec 15 10:59:19 2013 (0) Local: received 16384 bytes, sent 0 bytes
  139. Sun Dec 15 11:20:00 2013 (1) Complete request sent.
  140. Sun Dec 15 11:20:16 2013 (1) Remote connection closed (rbsize: 0).
  141. Sun Dec 15 11:20:16 2013 (1) Local: received 91646486 bytes, sent 634 bytes
  142. Sun Dec 15 11:20:16 2013 (1) Remote: received 634 bytes, sent 91646486 bytes
  143. Sun Dec 15 11:20:16 2013 (1) Ratelimit: sent 91646486 byte(s) in 1259.595 seconds, 72758 Bps (71.05 kBps)
  144. Mon Dec 16 03:13:25 2013 Accepted connection from 127.0.0.1:37483
  145. Mon Dec 16 03:13:25 2013 PID for socket: 513
  146. Mon Dec 16 03:13:25 2013 PID 513: issending: 0
  147. Mon Dec 16 03:13:25 2013 (0) Connection from 127.0.0.1:37483 -- slot 0
  148. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  149. Mon Dec 16 03:13:25 2013 (0) [FAH] Helper pid: -1
  150. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513: numcores: 0
  151. Mon Dec 16 03:13:25 2013 (0) [FAH] now: 1387163605, last helper launched at: 1387105095
  152. Mon Dec 16 03:13:25 2013 (0) [FAH] Launching helper: '/proc/513/cwd/langouste-helper.sh' (exe name: '/usr/local/fah/fah6')...
  153. Mon Dec 16 03:13:25 2013 (0) [FAH] Forked 808
  154. Mon Dec 16 03:13:25 2013 (0) Local: received 16384 bytes, sent 0 bytes
  155. Mon Dec 16 03:13:25 2013 Accepted connection from 127.0.0.1:37484
  156. Mon Dec 16 03:13:25 2013 PID for socket: 513
  157. Mon Dec 16 03:13:25 2013 PID 513: issending: 0
  158. Mon Dec 16 03:13:25 2013 (0) Connection from 127.0.0.1:37484 -- slot 0
  159. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  160. Mon Dec 16 03:13:25 2013 (0) [FAH] Helper pid: -1
  161. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513: numcores: 0
  162. Mon Dec 16 03:13:25 2013 (0) [FAH] now: 1387163605, last helper launched at: 1387163605
  163. Mon Dec 16 03:13:25 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  164. Mon Dec 16 03:13:25 2013 (0) Local: received 16384 bytes, sent 0 bytes
  165. Mon Dec 16 03:13:25 2013 Accepted connection from 127.0.0.1:37485
  166. Mon Dec 16 03:13:25 2013 PID for socket: 513
  167. Mon Dec 16 03:13:25 2013 PID 513: issending: 0
  168. Mon Dec 16 03:13:25 2013 (0) Connection from 127.0.0.1:37485 -- slot 0
  169. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  170. Mon Dec 16 03:13:25 2013 (0) [FAH] Helper pid: -1
  171. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513: numcores: 0
  172. Mon Dec 16 03:13:25 2013 (0) [FAH] now: 1387163605, last helper launched at: 1387163605
  173. Mon Dec 16 03:13:25 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  174. Mon Dec 16 03:13:25 2013 (0) Local: received 16384 bytes, sent 0 bytes
  175. Mon Dec 16 03:13:25 2013 Accepted connection from 127.0.0.1:37486
  176. Mon Dec 16 03:13:25 2013 PID for socket: 513
  177. Mon Dec 16 03:13:25 2013 PID 513: issending: 0
  178. Mon Dec 16 03:13:25 2013 (0) Connection from 127.0.0.1:37486 -- slot 0
  179. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  180. Mon Dec 16 03:13:25 2013 (0) [FAH] Helper pid: -1
  181. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513: numcores: 0
  182. Mon Dec 16 03:13:25 2013 (0) [FAH] now: 1387163605, last helper launched at: 1387163605
  183. Mon Dec 16 03:13:25 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  184. Mon Dec 16 03:13:25 2013 (0) Local: received 16384 bytes, sent 0 bytes
  185. Mon Dec 16 03:13:25 2013 Accepted connection from 127.0.0.1:37487
  186. Mon Dec 16 03:13:25 2013 PID for socket: 513
  187. Mon Dec 16 03:13:25 2013 PID 513: issending: 0
  188. Mon Dec 16 03:13:25 2013 (0) Connection from 127.0.0.1:37487 -- slot 0
  189. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  190. Mon Dec 16 03:13:25 2013 (0) [FAH] Helper pid: -1
  191. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513: numcores: 0
  192. Mon Dec 16 03:13:25 2013 (0) [FAH] now: 1387163605, last helper launched at: 1387163605
  193. Mon Dec 16 03:13:25 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  194. Mon Dec 16 03:13:25 2013 (0) Local: received 16384 bytes, sent 0 bytes
  195. Mon Dec 16 03:13:25 2013 Accepted connection from 127.0.0.1:37488
  196. Mon Dec 16 03:13:25 2013 PID for socket: 513
  197. Mon Dec 16 03:13:25 2013 PID 513: issending: 0
  198. Mon Dec 16 03:13:25 2013 (0) Connection from 127.0.0.1:37488 -- slot 0
  199. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  200. Mon Dec 16 03:13:25 2013 (0) [FAH] Helper pid: -1
  201. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513: numcores: 0
  202. Mon Dec 16 03:13:25 2013 (0) [FAH] now: 1387163605, last helper launched at: 1387163605
  203. Mon Dec 16 03:13:25 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  204. Mon Dec 16 03:13:25 2013 (0) Local: received 16384 bytes, sent 0 bytes
  205. Mon Dec 16 03:13:25 2013 Accepted connection from 127.0.0.1:37489
  206. Mon Dec 16 03:13:25 2013 PID for socket: 513
  207. Mon Dec 16 03:13:25 2013 PID 513: issending: 0
  208. Mon Dec 16 03:13:25 2013 (0) Connection from 127.0.0.1:37489 -- slot 0
  209. Mon Dec 16 03:13:25 2013 (0) [FAH] PID 513 is contacting main assignment server
  210. Mon Dec 16 03:13:25 2013 (0) resolving 'assign.stanford.edu:8080'
  211. Mon Dec 16 03:13:25 2013 (0) Connecting to: 171.67.108.200:8080
  212. Mon Dec 16 03:13:25 2013 (0) Connected.
  213. Mon Dec 16 03:13:26 2013 (0) Local connection closed (bsize: 0).
  214. Mon Dec 16 03:13:26 2013 (0) Local: received 559 bytes, sent 396 bytes
  215. Mon Dec 16 03:13:26 2013 (0) Remote: received 396 bytes, sent 559 bytes
  216. Mon Dec 16 03:13:26 2013 Accepted connection from 127.0.0.1:37491
  217. Mon Dec 16 03:13:26 2013 PID for socket: 513
  218. Mon Dec 16 03:13:26 2013 PID 513: issending: 0
  219. Mon Dec 16 03:13:26 2013 (0) Connection from 127.0.0.1:37491 -- slot 0
  220. Mon Dec 16 03:13:26 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 512
  221. Mon Dec 16 03:13:26 2013 (0) resolving '128.143.231.201:8080'
  222. Mon Dec 16 03:13:26 2013 (0) Connecting to: 128.143.231.201:8080
  223. Mon Dec 16 03:13:26 2013 (0) Connected.
  224. Mon Dec 16 03:14:05 2013 (0) Remote connection closed (rbsize: 0).
  225. Mon Dec 16 03:14:05 2013 (0) Local: received 631 bytes, sent 30339753 bytes
  226. Mon Dec 16 03:14:05 2013 (0) Remote: received 30339753 bytes, sent 631 bytes
  227. Mon Dec 16 03:14:05 2013 Accepted connection from 127.0.0.1:37493
  228. Mon Dec 16 03:14:05 2013 PID for socket: 513
  229. Mon Dec 16 03:14:05 2013 PID 513: issending: 0
  230. Mon Dec 16 03:14:05 2013 (0) Connection from 127.0.0.1:37493 -- slot 0
  231. Mon Dec 16 03:14:05 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  232. Mon Dec 16 03:14:05 2013 (0) [FAH] Helper pid: -1
  233. Mon Dec 16 03:14:05 2013 (0) [FAH] PID 513: numcores: 0
  234. Mon Dec 16 03:14:05 2013 (0) [FAH] now: 1387163645, last helper launched at: 1387163605
  235. Mon Dec 16 03:14:05 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  236. Mon Dec 16 03:14:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  237. Mon Dec 16 03:14:05 2013 Accepted connection from 127.0.0.1:37494
  238. Mon Dec 16 03:14:05 2013 PID for socket: 513
  239. Mon Dec 16 03:14:05 2013 PID 513: issending: 0
  240. Mon Dec 16 03:14:05 2013 (0) Connection from 127.0.0.1:37494 -- slot 0
  241. Mon Dec 16 03:14:05 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  242. Mon Dec 16 03:14:05 2013 (0) [FAH] Helper pid: -1
  243. Mon Dec 16 03:14:05 2013 (0) [FAH] PID 513: numcores: 0
  244. Mon Dec 16 03:14:05 2013 (0) [FAH] now: 1387163645, last helper launched at: 1387163605
  245. Mon Dec 16 03:14:05 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  246. Mon Dec 16 03:14:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  247. Mon Dec 16 03:14:05 2013 Accepted connection from 127.0.0.1:37495
  248. Mon Dec 16 03:14:05 2013 PID for socket: 513
  249. Mon Dec 16 03:14:05 2013 PID 513: issending: 0
  250. Mon Dec 16 03:14:05 2013 (0) Connection from 127.0.0.1:37495 -- slot 0
  251. Mon Dec 16 03:14:05 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  252. Mon Dec 16 03:14:05 2013 (0) [FAH] Helper pid: -1
  253. Mon Dec 16 03:14:05 2013 (0) [FAH] PID 513: numcores: 0
  254. Mon Dec 16 03:14:05 2013 (0) [FAH] now: 1387163645, last helper launched at: 1387163605
  255. Mon Dec 16 03:14:05 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  256. Mon Dec 16 03:14:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  257. Mon Dec 16 03:14:05 2013 Accepted connection from 127.0.0.1:37496
  258. Mon Dec 16 03:14:05 2013 PID for socket: 513
  259. Mon Dec 16 03:14:05 2013 PID 513: issending: 0
  260. Mon Dec 16 03:14:05 2013 (0) Connection from 127.0.0.1:37496 -- slot 0
  261. Mon Dec 16 03:14:05 2013 (0) [FAH] PID 513 is most likely contacting WU server, content length: 91358456
  262. Mon Dec 16 03:14:05 2013 (0) [FAH] Helper pid: -1
  263. Mon Dec 16 03:14:05 2013 (0) [FAH] PID 513: numcores: 0
  264. Mon Dec 16 03:14:05 2013 (0) [FAH] now: 1387163645, last helper launched at: 1387163605
  265. Mon Dec 16 03:14:05 2013 (0) [FAH] WARNING: can only launch one helper in 2 minutes (per client)
  266. Mon Dec 16 03:14:05 2013 (0) Local: received 16384 bytes, sent 0 bytes
  267. Mon Dec 16 03:14:25 2013 Accepted connection from 127.0.0.1:37497
  268. Mon Dec 16 03:14:25 2013 PID for socket: 875
  269. Mon Dec 16 03:14:25 2013 PID 875: issending: 1
  270. Mon Dec 16 03:14:25 2013 (0) Connection from 127.0.0.1:37497 -- slot 0
  271. Mon Dec 16 03:14:25 2013 (0) [FAH] PID -1 is most likely contacting WU server, content length: 91358456
  272. Mon Dec 16 03:14:25 2013 (0) resolving '128.143.231.201:8080'
  273. Mon Dec 16 03:14:25 2013 (0) Connecting to: 128.143.231.201:8080
  274. Mon Dec 16 03:14:26 2013 (0) Connected.
  275. Mon Dec 16 03:28:58 2013 (0) Complete request sent.
  276. Mon Dec 16 03:29:16 2013 (0) Remote connection closed (rbsize: 0).
  277. Mon Dec 16 03:29:16 2013 (0) Local: received 91358580 bytes, sent 634 bytes
  278. Mon Dec 16 03:29:16 2013 (0) Remote: received 634 bytes, sent 91358580 bytes
  279. Mon Dec 16 03:29:16 2013 (0) Ratelimit: sent 91358580 byte(s) in 890.211 seconds, 102625 Bps (100.21 kBps)
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 新注册用户

本版积分规则

论坛官方淘宝店开业啦~

Archiver|手机版|小黑屋|中国分布式计算总站 ( 沪ICP备05042587号 )

GMT+8, 2024-4-17 06:10

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表