Skip to content

I really struggled to find accurate information on how to create a Jenkins slave on windows and have that slave set up as a service. So here it is...

We're currently using Windows 7 for the slaves with Jenkins 1.638.

In the Jenkins web client

  1. Hover over the small "Jenkins" text and a small black down arrow will appear, click it

  2. Now hover over "Manage Jenkins"

  3. and then select the "Manage Nodes" option

jenkins nodes

Next, on the "Manage Nodes" page

  1. Choose the "New Node" option on the left

  2. On the next page give the new node a name (I'd suggest setting the node name to the name of the machine)

  3. Choose the "Dumb Slave option" - Note that the node name is case sensitive so wherever you refer to it you'll need to use the exact same name you specify here

  4. Click the "OK" button

Jenkins new node

You'll now be taken to a page for the new node where you should

  1. Set the "Remote root directory" to a folder somewhere on the slave

  2. Set the "Launch method" to "Launch slave agents via Java Web Start"

  3. Assuming your slave has more than a couple of GB or RAM then it's also worth adding "-Xmx1024" to the "JVM options" or you may encounter some nasty out of memory errors from java on the slave - if you don't see the "JVM options" section then click the "Advanced" button on the right hand side under the "Launch method"

  4. Click the "Save" button

jenkins new node setup

From the list of nodes click on the one you just created and you will be taken to a page where there will be a command line. You will need to copy the full line and make it available to the slave. In the following diagram:

  1. Should be the Jenkins master machine

  2. is the secret for the Jenkins slave - make sure you make a note of this, you'll need it on the slave in a minute

  3. Click the slave.jar link to download the slave.jar file and copy it to the slave, let's say to D:\Jenkins\slave.jar

jenkins new node secret

On the Jenkins slave to be

Download and install the Java Runtime Environment.

Download and install the Windows Resource Kit. You will likely be prompted with a message suggesting that the Resource Kit is not compatible with Windows 7, simply assure the installer that you know what you're doing and install it anyway.

Create a blank service called "Jenkins Slave" by running the following from a command prompt:

shell
"C:\Program Files (x86)\Windows Resource Kits\Tools\instsrv.exe" "Jenkins Slave" "C:\Program Files (x86)\Windows Resource Kits\Tools\srvany.exe"

Under the registry key:

shell
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Jenkins Slave
  1. Create a string value "Description"

  2. Populate it with "Jenkins Continuous Integration Slave"

jenkins slave registry settings 1

  1. Create a new key "Parameters"

  2. Under "Parameters" create a new string value "Application"

  3. Populate it with the full path to java.exe, something like "C:\Program Files (x86)\Java\jre1.8.0_66\bin\java.exe"

  4. Under "Parameters" Create a new string value "AppParameters"

  5. Populate it with "-jar D:\jenkins\slave.jar -jnlpUrl http://jenkins-master:8080/computer/new_machine/slave-agent.jnlp - secret 96c9999999999999999999999999999999999999999"

  6. The slave.jar should point to the correct location

  7. The Jenkins master machine name should be correct

  8. The new Jenkins slave machine should be correct

  9. Make sure you use the secret for this machine that you copied from the master when adding the new node

jenkins slave registry settings 2

Open the Services application from Control Panel - Administrative Tools, find the "Jenkins Slave" service, right click on the service and go to "Properties".

  1. Go to the "Recovery" tab and change "First failure" and "Second failure" to "Restart the Service" - occasionally we found it wouldn't start up first time out

  2. Go to the "Log On" tab and set an account and password- we found that using an account with local admin rights on the slave machine worked best but this is probably unnecessary

  3. Go to the "General" tab and change the "Startup type" to "Automatic" - make sure the service starts up when you restart the slave

  4. Click the "OK" button

Now start the service

In the Jenkins web client

Give it a few seconds and you should see the new slave come on line in the Jenkins web client:

  1. It should appear as the machine's name

  2. And the little picture of a computer will no longer have a little red x next to it

jenkins node online

That's it.

Let me know if you have any problems...

All views expressed are my own