tags:

views:

602

answers:

1

When I use ApacheBench to test https, the error is returned, "ssl handshake failed".

How can I use ApacheBench to test https?

A: 

From: ab - Apache HTTP server benchmarking tool

-s When compiled in (ab -h will show you) use the SSL protected https rather than the http protocol. This feature is experimental and very rudimentary. You probably do not want to use it.

-Z ciphersuite Specify SSL/TLS cipher suite (See openssl ciphers).

DreadPirateShawn