34

I have Apache server 2.2.15 on my Windows 7 machine and I want to run Bench on a server I have using https. But when I run ab [myopts] https://example.com, I get SSL not compiled in; no https support. From what I've read you can compile ab with https support with a flag during the server install.

My question is, considering I already have server installed, what is the easiest/best way to benchmark my server over https?

Matt R. Wilson
  • 7,268
  • 5
  • 32
  • 48

2 Answers2

83

Use the abs.exe tool to test sites with a SSL cetificate

PaulTheCyclist
  • 1,227
  • 10
  • 10
  • 1
    Because I did not compile with https support the first time, the abs.exe does not exist in my install. – Matt R. Wilson Sep 15 '11 at 01:49
  • 3
    Great ! But next problem "OPENSSL_Uplink(5F636000,08): no OPENSSL_Applink" that leads me to this link [download another abs.exe on apachelounge](https://www.apachelounge.com/viewtopic.php?p=33472) – François Breton May 27 '16 at 15:27
  • OPENSSL_Uplink(000007FEEFE30000,08): no OPENSSL_Applink –  Mar 16 '18 at 06:19
  • @FrançoisBreton so whats the solution for that problem ? i am using wamp and apache came with it is 2.4.17 –  Mar 16 '18 at 07:01
  • 1
    @AMB its been a long time, but I think the solution is to find another abs.exe version https://stackoverflow.com/questions/4314827 – François Breton Mar 19 '18 at 20:44
-1

use abs in CMD

example:

abs -n 100 -c 10 https://api.test.com/test-end-point

vivek sharma
  • 19
  • 1
  • 1
  • 8