Is it possible to configure Jmeter JDBC Connection to connect to an oracle database, that uses radius authentication.
I was able to connect to the database using a non radius user, but not with a user using radius.
I need to be able to set oracle.net.crypto_seed
.
Any thoughts?
As of current JMeter version (JMeter 5.1) it is not possible to provide custom properties to the underlying SQL Connection so you won't be able to use JDBC Connection Configuration in order to create a connection pool given Radius authentication requirement.
The workaround is to establish the connection (and maybe even execute queries) using JSR223 Sampler and Groovy language. Check out JDBC Client-Side Security Features article for comprehensive explanation, example code, etc.