docker-jmeter | Jmeter Docker Images | Performance Testing library
kandi X-RAY | docker-jmeter Summary
kandi X-RAY | docker-jmeter Summary
Jmeter Docker Images (Jmeter-base. Jmeter-Master and Jmeter-Slave)
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of docker-jmeter
docker-jmeter Key Features
docker-jmeter Examples and Code Snippets
Community Discussions
Trending Discussions on docker-jmeter
QUESTION
This is based on the answer in JMeter & Gitlab: How to Install & SQLServer JDBC Driver?.
In short, the debug output below shows that the appropriate JAR and DLL are in the Java-path on the Docker image, yet I am seeing the following error in the JMeter output:
- "DBCP DataSource configured without a 'password'" mssql
- "DBCP DataSource configured without a 'user'" mssql
The image uses JMeter 5.4.2 ("latest").
The JDBC driver files I am using are:
- mssql-jdbc_auth-9.4.1.x86.dll
- mssql-jdbc-9.4.1.jre8.jar
So is it a compatibility issue?
I have JMeter 5.4.1 installed on my computer, and the test plan works fine using the local application.
Here is the output from the Gitlab job:
...ANSWER
Answered 2022-Jan-10 at 06:33I 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:
QUESTION
Goal
I am using Docker to run JMeter in Azure Devops. I am trying to use Blazemeter's Parallel Controller, which is not native to JMeter. So, according to the justb4/jmeter image documentation, I used the following command to get the image going and run the JMeter test:
...ANSWER
Answered 2021-Jun-10 at 04:54Looking into the Dockerfile:
QUESTION
I am trying to run Jmeter in Docker. I got Dockerfile and Entrypoint has entrypoint.sh as well added.
...ANSWER
Answered 2021-Apr-30 at 14:40For the X11 issue, you can try setting -e DISPLAY=$DISPLAY
in your docker run
, you may need to perform some other steps to get it working properly depending on how your host is setup. But trying to get the GUI working here seems like overkill. To fix your problem when you pass through the command arguments, you can either:
- Add execute permissions to the
entrypoint.sh
file on your host by runningchmod +x /home/jmeter/unbuntjmeter/entrypoint.sh
.
Or
- Don't mount
/home/jmeter/unbuntjmeter/
into the container by removing the-v
argument from yourdocker run
command.
When you run this command docker run -v /home/jmeter/unbuntjmeter/:/jmeter/apache-jmeter-5.2.1 sar/test12 -n -t ./users.jmx
, you are mounting the directory /home/jmeter/unbuntjmeter/
from your host machine onto /jmeter/apache-jmeter-5.2.1
in your docker container.
That means your /jmeter/apache-jmeter-5.2.1/entrypoint.sh
script in the container is being overwritten by the one in that directory on your host (if there is one, which there does seem to be). This file on your host machine doesn't have the proper permissions to be executed in your container (presumably it just needs +x
because you are running this in your build: RUN ["chmod", "+x", "entrypoint.sh"]
).
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install docker-jmeter
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page