问题
When I try to run ./gradlew run
I keep getting:
Downloading https://services.gradle.org/distributions/gradle-4.4.1-bin.zip
Exception in thread "main" javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty
Tried curl -v https://services.gradle.org/distributions/gradle-4.4.1-bin.zip
and works just fine
Connected to services.gradle.org (2400:cb00:2048:1::6810:aba6)
successfully set certificate verify locations:
CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: /etc/ssl/certs
回答1:
You haven't mentioned which JDK or OS/distro you are using, but it's possible that ca-certificates-java
is not a dependency in the Oracle JDK/JRE so this must be explicitly installed.
You might need to run
sudo /var/lib/dpkg/info/ca-certificates-java.postinst configure
See also Error - trustAnchors parameter must be non-empty
来源:https://stackoverflow.com/questions/47921563/javax-net-ssl-sslexception-the-trustanchors-parameter-must-be-non-empty