Most probably there is a problem with the test data, i.e. alias is missing in the keystore or wrong certificate lives under the correct alias.
First of all I would recommend cross-checking your aliases in the keystore and in the CSV file, you can get the list of aliases from the keystore using keytool <https://docs.oracle.com/javase/8/docs/technotes/tools/unix/keytool.html> command like: > a > keytool -list -v -keystore /path/to/your/keystore | find "Alias" For example when I use JMeter's "proxyserver.jks" as the keystore I'm getting the next 2 aliases: <http://www.jmeter-archive.org/file/t340375/foo.png> > :root_ca: > :intermediate_ca: it means that I need exactly these 2 entries in the CSV file holding the certificate aliases. You might want to check out How to Use Multiple Certificates When Load Testing Secure Websites <https://www.blazemeter.com/blog/how-to-use-multiple-certificates-when-load-testing-secure-websites/> article for comprehensive configuration instructions -- Sent from: http://www.jmeter-archive.org/JMeter-User-f512775.html --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
