You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
Attempting to build the docker image with apache jmeter 5.0 leads to the following error:
rmi_keystore.jks (No such file or directory)
The local_master container would come up but the server wouldn't start.
I was able to fix this issue by updating user.properties within the master container with the following line:
server.rmi.ssl.disable=true
(I also needed to add an extra line in the dockerfile for installing unzip in order for the build to succeed).
After making these changes I was able to build the dockerfile (but set the jmeter version to 5.3 in the build args in order to use a recent version of jmeter) and then docker-compose up my local image successfully, providing me with a master and server container. I was then able to successfully run my jmx tests from within the master docker container. Perhaps adding these changes to 4.0 and 5.0 will allow the servers to start for those that want to use a newer version of jmeter?
The text was updated successfully, but these errors were encountered:
@christiannews If you are using helm, simply add a line to "distributed-jmeter-docker/config/user.properties" file with "server.rmi.ssl.disable=true"... I hope this will work.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Attempting to build the docker image with apache jmeter 5.0 leads to the following error:
rmi_keystore.jks (No such file or directory)
The local_master container would come up but the server wouldn't start.
I was able to fix this issue by updating user.properties within the master container with the following line:
server.rmi.ssl.disable=true
(I also needed to add an extra line in the dockerfile for installing unzip in order for the build to succeed).
After making these changes I was able to build the dockerfile (but set the jmeter version to 5.3 in the build args in order to use a recent version of jmeter) and then docker-compose up my local image successfully, providing me with a master and server container. I was then able to successfully run my jmx tests from within the master docker container. Perhaps adding these changes to 4.0 and 5.0 will allow the servers to start for those that want to use a newer version of jmeter?
The text was updated successfully, but these errors were encountered: