We've recently set up a Jenkins CI server on Windows, and in order to use Active Directory authentication I'd like to require https (SSL/TLS) for access. Given this setup, what is the recommended way to do this?

link|improve this question
Are you running Jenkins under a servlet container such as Tomcat? – Bernard Mar 15 '11 at 15:36
No, just as a Windows service (which I guess is still using Winstone as the servlet container?). – Nick Jones Mar 15 '11 at 17:31
feedback

2 Answers

up vote 5 down vote accepted

Go to your %JENKINS_HOM% and modify the jenkins.xml. Where you see --httpPort=8080 change it to --httpPort=1 --httpsPort=8080 you can make the ports anything you want of course, but in my testing(a while ago, it may have changed) if you don't keep --httpPort= then Jenkins will always use 8080. So even if you just change --httpPort=8080 to --httpsPort=8080 port 8080 will still be using non-https.

Also, if you want to use your own certificate, there are some instructions at the bottom of this page.

http://wiki.hudson-ci.org/display/HUDSON/Starting+and+Accessing+Hudson

link|improve this answer
Thanks George, I've gone through all the steps on the page you linked to. At this point I've got a winstone.ks keystore in my Jenkins folder (and can verify its contents using the java keytool). However, when I restart Jenkins, I get this: [Winstone 2011/03/16 15:44:21] - Error during HTTPS listener init or shutdown java.security.UnrecoverableKeyException: Cannot recover key followed by the rest of the stack trace. I'm sure the keystore password is correct. Any ideas? – Nick Jones Mar 16 '11 at 20:53
The correct link is wiki.jenkins-ci.org/display/JENKINS/… BTW – Kohsuke Kawaguchi Mar 21 '11 at 6:06
Just to close off this topic, the problem I'd run into was that the keystore password and the certificate password (entered when generating the CSR) were different. Once I recreated the keystore with a password that matched the certificate password, the problem was solved. – Nick Jones Mar 31 '11 at 14:39
Note for those looking to do the same on a CentOS machine, the suggested changes can be made to the file found in /etc/sysconfig/jenkins – dkinzer May 6 at 18:23
One other thing is that I needed to set --httpPort=-1 or it wouldn't work. – dkinzer May 6 at 18:34
feedback
  1. Run: “keytool -genkey -keyalg RSA -keystore Jenkins.jks -alias [Name of website] -keysize 2048”
    • Answer the questions remembering that “First and last name” is the website URL and should be lowercase. Example:“build.jenkins-ci.org”
    • “State or province” cannot be abriviated.
  2. Run: “keytool -certreq -Keystore jenkins.jks -alias [Name of website] -file jenkins.csr -keysize 2048”
  3. Send Jenkins.csr to your cert provider and request a PKCS#7 cert which has a .p7b extention and starts with “-----BEGIN PKCS #7 SIGNED DATA-----“.
    • Note: Trial certs are not normally available in .p7b format but you may be able to combine the .cer files using this tool which reported success but didn’t work for me. (https://www.sslshopper.com/ssl-converter.html)
  4. Run “keytool -import -trustcacerts -file jenkins.p7b -keystore jenkins.jks -alias jenkins.bsquare.com”
  5. Change the “arguments” node in Jenkins.xml to the following prespectivly. -Xrs -Xmx256m -Dhudson.lifecycle=hudson.lifecycle.WindowsServiceLifecycle -jar "%BASE%\jenkins.war" --httpPort=-1 --httpsPort=443 --httpsKeyStore="%BASE%\Cert\Jenkins.jks" --httpsKeyStorePassword=[Cert password from step 1]

Troubleshooting:

  • If Jenkins Doesn’t start read the last lines from Jenkins.err.log.
  • If Jenkins didn’t start because of an issue with Jenkins.xml, replace the –(Weird windows hyphen) chars with an actual -(ASCII hyphen).
  • If Jenkins starts but the cert still reads as bad Make sure the [Name of website] is the actual URL without the “https:” example: "https://build.jenkins-ci.org" would be "build.jenkins-ci.org" oIf that isn’t the issue inspect the .jks file using “KeyStore Explorer”. The Certificate Hierarchy should show that each cert is nested in another (This is to illustrate the cert chain). If it shows the certs next to each other then it’s not correct.
  • If is won’t start on a specific port 443 for example then verify IIS or another app isn’t currently using the port.
  • If you can see the site on the PC it’s hosted on but not another PC then verify you aren’t getting blocked by a firewall.

Good luck

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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