Reputation: 11
I need to perform a load run with 100 User Load for an API with certificate-based authentication. I had SIX different certificates in JKS format. I would like to know how can we use all these six certificates while performing a load run. Can we have some configurations like we use CSV Data config for parameterizing data?
I tried by mentioning the path of all six certificates under Keystore properties of the System property file and when I run, Jmeter starts taking the SIX certificates in a sequel, but it didn't work
Is there any other configurations I can use?
Can you please help me in achieving this
Upvotes: 1
Views: 1234
Reputation: 168247
javax.net.ssl.keyStore
and javax.net.ssl.keyStorePassword
system propertiesYou can take a look at How to Use Multiple Certificates When Load Testing Secure Websites article which contains step-by-step instructions on setting up keystore and JMeter
Upvotes: 1