3

I´ve installed the Skip Certificate Check plugin on our Jenkins server, re-downloaded slave.jar & jnlp to the agent, but when I start them, I still get the message about the untrusted SSL certificate. Any advice?

Thanks in advance, Christian

Christian Baumann
  • 3,188
  • 3
  • 20
  • 37

1 Answers1

3

Add -noCertificateCheck to the arguments for slave.jar.

If I understand the Skip Certificate Check Plugin correctly (I haven't used it) it makes the Jenkins Master process skip cert checks. E.g. to ignore the warning, when checking for updates, if you have a self-signed cert for your Subversion server.

If I understand your problem, it seems to be to get the slave to connect to the master when the master has a self-signed cert. The switch above makes the slave-process ignore cert warnings when it's connecting to the master.

njesper
  • 31
  • 2