I am using Apache 2.4.2 in an Ubuntu virtual machine. I use this to download a test, send a request to some HTTPS URL. The number of failed requests is zero. But none of my requests can really be processed (already found in the database). With the same URL, calling it through the browser is ok (updated database). So it was just an Apache Benchmark problem. Here is my Apache Benchmark team:
# ab -n 100 -c 10 -k -f ALL -g "/home/administrator/Desktop/g.txt" -e "home/administrator/Desktop/e.txt" "https://mysecuredurl.com/MyWCF.svc/POX/MyMethod?arg=something"
When I omit the -k argument, the SSL connection clearly shows that this is a problem:
SSL Read Error - Close Connection
Connection Times (ms)
min mean[+/-sd] median max
Connect: 845 851 4.0 852 857
Processing: 218 232 20.4 229 286
Waiting: 218 232 20.4 229 286
Total: 1068 1083 19.6 1076 1131
Does anyone know how to solve this problem so that I can use Apache Benchmark for my HTTPS load test, skipping the SSL problem? Thanks
source