Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to configure my e-mail on Jenkins/Hudson and I constantly receive the error

java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty

I've seen a good amount of information online about the error, but have not gotten any to work. I'm using Sun's JDK on fedora linux (not openJDK).

Here are a few things I've tried. I tried following the advice from this post but it copying the cacerts from windows over to my Fedora box hosting Jenkins didn't work. I tried following this guide as I'm trying to configure gmail as my SMTP server but it didn't work either. I also tried to download and move those cacert files manually and move them over to my java folder using a variation of the commands on this guide.

I open to any suggestions as I'm currently stuck right now. I have gotten it to work from a Windows Hudson server but I am struggling on Linux.

share|improve this question

3 Answers

up vote 46 down vote accepted

This bizarre message means that the truststore you specified was not found.

share|improve this answer
Thanks EJP, I saw your post here but I wasn't sure how to verify the truststore is there. Also I brought up my server.xml file but I wasn't sure how to verify the truststore is in place. Do I just check the keystoreFile="conf/.keystore" pref (keystoreFile wasn't present in that file)? – Bubbleware Technology Jul 22 '11 at 16:58
@Bubbleware Technology The error will stop happening when you get it right. That's your verification. You need to understand what the current directory is when executing Tomcat if you're going to specify relative paths to the truststore. I can't make head or tail of your last sentence. – EJP Jul 24 '11 at 10:02
Ok I think I follow your statement there. What I did was first search for a .jks file (which I couldn't find one). Then I created one with keytool -genkey -alias mydomain -keyalg RSA -keystore keystore.jks -keysize 2048 . Then I added this to JAVA_OPTS variable in catalina.sh with the command -Djavax.net.ssl.keyStore=/root/keystore.jks Unfortunately, I still get the same trustAnchors error. – Bubbleware Technology Jul 28 '11 at 0:00
I tried running the command println(System.getProperty("javax.net.ssl.trustStore")); via Jenkins Script Console and I get null. I tried setting it via the script console with System.setProperty("javax.net.ssl.trustStore", /root/keystore.jks);. I no longer get null when I run getProperty on the trustStore but I'm pretty sure this is not the correct way to set this as I still get that truststore error testing my e-mail. Any ideas what I'm doing wrong? – Bubbleware Technology Jul 28 '11 at 0:06
@Bubbleware Technology the keystore is for keys, the truststore is for trusted certificates. The trust-anchors message refers to the truststore, not the keystore, so setting a keystore won't affect it. The correct way to set the truststore for Tomcat is either via the -D option as you did for the truststore, or possibly via the Connector attributes in server.xml, if it has truststore-type attributes. – EJP Jul 28 '11 at 11:05
show 4 more comments

I ran into this solution from http://architecturalatrocities.com/post/19073788679/fixing-the-trustanchors-problem-when-running-openjdk-7:

Fixing the trustAnchors problem when running OpenJDK 7 on OS X. If you’re running OpenJDK 7 on OS X and have seen this exception

Unexpected error: java.security.InvalidAlgorithmParameterException:
the trustAnchors parameter must be non-empty

There’s a simple fix, just link in the same cacerts file that Apple’s JDK 1.6 uses:

cd $(/usr/libexec/java_home -v 1.7)/jre/lib/security
ln -fsh /System/Library/Java/Support/CoreDeploy.bundle/Contents/Home/lib/security/cacerts

You need to do this for every OpenJDK version you have installed, just change -v 1.7 to the version you want to fix. Run /usr/libexec/java_home -V to see all the JRE and JDK’s you have installed.

Perhaps the OpenJDK guys could add this to their install scripts.

share|improve this answer
My "ln" command (on OSX 10.6.8) doesn't have an "h" option; what is it meant to do? – Andrew Swan Jun 20 '12 at 2:09
Ah, I had two "ln" commands, one in /usr/bin (the default) and one in /bin; the latter had an "h" option and worked. – Andrew Swan Jun 20 '12 at 2:20

In Ubuntu >= 12.10, the certificates are held in the ca-certificates-java package. Using -Djavax.net.ssl.trustStore=/etc/ssl/certs/java/cacerts will pick them up regardless of what JDK you're using.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.