JMeter Plugins Manager Failed to download plugins repository
I can't connect with JMeter Plugins Manager.
I have a new version 5.
JMeter is working normally but I can't use manager.
Error's technical details: javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target at
sun.security.ssl.Alerts.getSSLException(Unknown Source)
jmeter
add a comment |
I can't connect with JMeter Plugins Manager.
I have a new version 5.
JMeter is working normally but I can't use manager.
Error's technical details: javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target at
sun.security.ssl.Alerts.getSSLException(Unknown Source)
jmeter
Have you tried the steps listed in the link in the error message?
– Vadim Yangunaev
Jan 31 at 8:01
add a comment |
I can't connect with JMeter Plugins Manager.
I have a new version 5.
JMeter is working normally but I can't use manager.
Error's technical details: javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target at
sun.security.ssl.Alerts.getSSLException(Unknown Source)
jmeter
I can't connect with JMeter Plugins Manager.
I have a new version 5.
JMeter is working normally but I can't use manager.
Error's technical details: javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: PKIX path building failed:
sun.security.provider.certpath.SunCertPathBuilderException: unable to
find valid certification path to requested target at
sun.security.ssl.Alerts.getSSLException(Unknown Source)
jmeter
jmeter
edited Jan 30 at 17:43
music2myear
31.2k858101
31.2k858101
asked Jan 30 at 17:10
Dawid PolakowskiDawid Polakowski
61
61
Have you tried the steps listed in the link in the error message?
– Vadim Yangunaev
Jan 31 at 8:01
add a comment |
Have you tried the steps listed in the link in the error message?
– Vadim Yangunaev
Jan 31 at 8:01
Have you tried the steps listed in the link in the error message?
– Vadim Yangunaev
Jan 31 at 8:01
Have you tried the steps listed in the link in the error message?
– Vadim Yangunaev
Jan 31 at 8:01
add a comment |
1 Answer
1
active
oldest
votes
Check SSL Configuration solution:
If you got an exception
javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
it possible can be fixed by set the path to original cacert certificate file. This file can be found in the following paths:
- `/usr/lib/jvm/java-8-oracle/jre/lib/security/cacerts.original`
- `/etc/ssl/certs/java/cacerts.original`
- `/etc/ssl/certs/java/cacerts`
- `%JAVA_HOME%jrelibsecurity (eg c:Program FilesJavajdk1.8.0_121jrelibsecurity)`
And launch JMeter with additional parameters to pass path to this file:
JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
jmeterbinjmeter.bat
An easy way to do so is by creating a file named setenv.bat
in the jmeterbin
directory. Such a file could look like:
rem This is the content of binsetenv.bat,
rem it will be called by binjmeter.bat
set JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
In addition, you may select and use your plugins with JMeter Plugins Manager this way
2019-02-07 13:03:20,597 WARN o.j.r.PluginManagerMenuItem: Failed to load plugin updates info javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.ssl.Alerts.getSSLException(Unknown Source) ~[?:1.8.0_201]
– Dawid Polakowski
Feb 7 at 13:25
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1400180%2fjmeter-plugins-manager-failed-to-download-plugins-repository%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Check SSL Configuration solution:
If you got an exception
javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
it possible can be fixed by set the path to original cacert certificate file. This file can be found in the following paths:
- `/usr/lib/jvm/java-8-oracle/jre/lib/security/cacerts.original`
- `/etc/ssl/certs/java/cacerts.original`
- `/etc/ssl/certs/java/cacerts`
- `%JAVA_HOME%jrelibsecurity (eg c:Program FilesJavajdk1.8.0_121jrelibsecurity)`
And launch JMeter with additional parameters to pass path to this file:
JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
jmeterbinjmeter.bat
An easy way to do so is by creating a file named setenv.bat
in the jmeterbin
directory. Such a file could look like:
rem This is the content of binsetenv.bat,
rem it will be called by binjmeter.bat
set JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
In addition, you may select and use your plugins with JMeter Plugins Manager this way
2019-02-07 13:03:20,597 WARN o.j.r.PluginManagerMenuItem: Failed to load plugin updates info javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.ssl.Alerts.getSSLException(Unknown Source) ~[?:1.8.0_201]
– Dawid Polakowski
Feb 7 at 13:25
add a comment |
Check SSL Configuration solution:
If you got an exception
javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
it possible can be fixed by set the path to original cacert certificate file. This file can be found in the following paths:
- `/usr/lib/jvm/java-8-oracle/jre/lib/security/cacerts.original`
- `/etc/ssl/certs/java/cacerts.original`
- `/etc/ssl/certs/java/cacerts`
- `%JAVA_HOME%jrelibsecurity (eg c:Program FilesJavajdk1.8.0_121jrelibsecurity)`
And launch JMeter with additional parameters to pass path to this file:
JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
jmeterbinjmeter.bat
An easy way to do so is by creating a file named setenv.bat
in the jmeterbin
directory. Such a file could look like:
rem This is the content of binsetenv.bat,
rem it will be called by binjmeter.bat
set JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
In addition, you may select and use your plugins with JMeter Plugins Manager this way
2019-02-07 13:03:20,597 WARN o.j.r.PluginManagerMenuItem: Failed to load plugin updates info javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.ssl.Alerts.getSSLException(Unknown Source) ~[?:1.8.0_201]
– Dawid Polakowski
Feb 7 at 13:25
add a comment |
Check SSL Configuration solution:
If you got an exception
javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
it possible can be fixed by set the path to original cacert certificate file. This file can be found in the following paths:
- `/usr/lib/jvm/java-8-oracle/jre/lib/security/cacerts.original`
- `/etc/ssl/certs/java/cacerts.original`
- `/etc/ssl/certs/java/cacerts`
- `%JAVA_HOME%jrelibsecurity (eg c:Program FilesJavajdk1.8.0_121jrelibsecurity)`
And launch JMeter with additional parameters to pass path to this file:
JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
jmeterbinjmeter.bat
An easy way to do so is by creating a file named setenv.bat
in the jmeterbin
directory. Such a file could look like:
rem This is the content of binsetenv.bat,
rem it will be called by binjmeter.bat
set JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
In addition, you may select and use your plugins with JMeter Plugins Manager this way
Check SSL Configuration solution:
If you got an exception
javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
it possible can be fixed by set the path to original cacert certificate file. This file can be found in the following paths:
- `/usr/lib/jvm/java-8-oracle/jre/lib/security/cacerts.original`
- `/etc/ssl/certs/java/cacerts.original`
- `/etc/ssl/certs/java/cacerts`
- `%JAVA_HOME%jrelibsecurity (eg c:Program FilesJavajdk1.8.0_121jrelibsecurity)`
And launch JMeter with additional parameters to pass path to this file:
JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
jmeterbinjmeter.bat
An easy way to do so is by creating a file named setenv.bat
in the jmeterbin
directory. Such a file could look like:
rem This is the content of binsetenv.bat,
rem it will be called by binjmeter.bat
set JVM_ARGS="-Djavax.net.ssl.trustStore=c:Program FilesJavajdk1.8.0_121jrelibsecuritycacerts"
In addition, you may select and use your plugins with JMeter Plugins Manager this way
edited Jan 31 at 9:12
answered Jan 31 at 8:54
Vadim YangunaevVadim Yangunaev
1164
1164
2019-02-07 13:03:20,597 WARN o.j.r.PluginManagerMenuItem: Failed to load plugin updates info javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.ssl.Alerts.getSSLException(Unknown Source) ~[?:1.8.0_201]
– Dawid Polakowski
Feb 7 at 13:25
add a comment |
2019-02-07 13:03:20,597 WARN o.j.r.PluginManagerMenuItem: Failed to load plugin updates info javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.ssl.Alerts.getSSLException(Unknown Source) ~[?:1.8.0_201]
– Dawid Polakowski
Feb 7 at 13:25
2019-02-07 13:03:20,597 WARN o.j.r.PluginManagerMenuItem: Failed to load plugin updates info javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.ssl.Alerts.getSSLException(Unknown Source) ~[?:1.8.0_201]
– Dawid Polakowski
Feb 7 at 13:25
2019-02-07 13:03:20,597 WARN o.j.r.PluginManagerMenuItem: Failed to load plugin updates info javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target at sun.security.ssl.Alerts.getSSLException(Unknown Source) ~[?:1.8.0_201]
– Dawid Polakowski
Feb 7 at 13:25
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1400180%2fjmeter-plugins-manager-failed-to-download-plugins-repository%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried the steps listed in the link in the error message?
– Vadim Yangunaev
Jan 31 at 8:01