I am testing eventlet out, and I am getting this error:

~>ab -n 10 -c 1 http://localhost:8090/
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient)...apr_socket_recv: Connection reset by peer (54)
Total of 2 requests completed

The website works at localhost:8090/ and returns 200 OK.

I had the same issue with tomcat, again the website worked fine.

What could the issue be?

link|improve this question

60% accept rate
Could this be an ipv6 problem, ab trying to translate localhost and use ::1 first and failing? – Jürgen Strobel Nov 14 '11 at 11:49
Could this be a firewall problem? Or maybe you are using proxy? – utapyngo Nov 19 '11 at 13:35
feedback

3 Answers

up vote 3 down vote accepted

I found using 127.0.0.1 rather than localhost worked:

ab -n 10 -c 1 http://127.0.0.1:8090/

Update: May have been a bug in ab: https://groups.google.com/forum/#!msg/nodejs/TZU5H7MdoII/yivu0d4LMaAJ

link|improve this answer
hi, not for me, I get the same error. Are you running lion? it worked fine for me b4 upgrading. – Blankman Nov 14 '11 at 0:16
My error was slightly different to you - but yes I'm on Lion. Looks like an ab bug on Lion: groups.google.com/forum/#!msg/nodejs/TZU5H7MdoII/yivu0d4LMaAJ – dkam Nov 15 '11 at 10:13
It's an ab's bug, have to patch apache and build a new ab. See the steps below pls. stackoverflow.com/a/8825278/47441 – Sun Liwen Jan 11 at 19:18
feedback

New version's apache have fix the issue. Only have to rebuild ab.

Have to patch apache and build a new ab.

$ wget http://mirrors.kahuki.com/apache//httpd/httpd-2.3.16-beta.tar.bz2
$ tar jxvf httpd-2.3.16-beta.tar.bz2 
$ cd httpd-2.3.16-beta
$ ./configure

Only have to build ab, which located in support folder.

$ cd support
$ make
...
$ ./ab -n 10 -c 1 http://localhost:8090/

If your apache is very old, then patch it and build as above.

$ wget https://www.rtfm.ro/download/patches/ab.patch --no-check-certificate
$ patch -p0 < ./ab.patch

Done.

link|improve this answer
Make sure to cp support/ab to /usr/sbin (or wherever as determined by 'which ab' – Sunil Gowda May 20 at 7:15
@SunilGowda It should work at any place. – Sun Liwen May 23 at 12:39
feedback

There is a patch for this bug, I followed the steps of this guide and it seems to work for me now in Lion.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.