I have 4 .pem files out of which 1 is ca certificate, and the rest are client side certificates. I tried adding them on Jmeter GUI by selecting Options->SSL Manager
.
But it lets me select one certificate only. Moreover, there's no option to disable SSL verification after adding certificate.
Any kind of help would be appreciated.
As per SSL Manager documentation
You may either use a Java Key Store (JKS) format key store, or a Public Key Certificate Standard #12 (PKCS12) file for your client certificates.
so you won't be able to load certificates from .pem files this way
You can use SSL Manager only for GUI mode and a single client certificate, for multiple certificates and/or non-GUI mode you need to specify the keystore location and password via system.properties file and if needed use Keystore Configuration if you want to use different certificates for different users.
So you need to:
javax.net.ssl.keyStore
property and specify the keystore password via javax.net.ssl.keyStorePassword
propertyMore information: How to Set Your JMeter Load Test to Use Client Side Certificates