ab is erroring out with apr_socket_recv: Connection refused (61)

后端 未结 5 1873
一生所求
一生所求 2020-12-23 18:56

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 $>         


        
5条回答
  •  悲哀的现实
    2020-12-23 19:21

    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

提交回复
热议问题