Home > OS >  JMeter & the JDBC Driver Using Docker - "DBCP DataSource configured without a 'password�
JMeter & the JDBC Driver Using Docker - "DBCP DataSource configured without a 'password�

Time:01-10

This is based on the answer in enter image description here

JMeter Report, showing errors: enter image description here

CodePudding user response:

I don't think you can use SQL Server integrated authentication from Linux machine.

In order to be able to use the approach with the Microsoft JDBC Driver and integrated authentication you need to run your builds on a Windows Runner

In case you have to use Linu you can work it around using JTDS JDBC Driver and connection string like:

jdbc:jtds:sqlserver://server_name:1433;databaseName=your-database;domain=your-domain;useNTLMv2=true;

and specify your username and password in the appropriate sections of the JDBC Connection Configuration.

Also be aware that according to 9 Easy Solutions for a JMeter Load Test “Out of Memory” Failure article you should always be using the latest version of JMeter so consider upgrading to JMeter 5.4.3 (or whatever is the latest version which is available at JMeter Downloads page) on next available opportunity.

  •  Tags:  
  • Related