Reputation: 426
I am trying to implement Jenkins for automating the deployment of a node application.
I am really new to this Jenkins setup. In my case, I have one server for Jenkins. I created a freestyle project in Jenkins and configured bitbucket and scm polling. It works perfectly.
But now Jenkins is deploying to the Jenkins server itself. But I need to deploy this to another remote server.
How to fix this?
Upvotes: 0
Views: 643
Reputation: 74
To build jobs on remote host, you need to perform below steps:
The next step is to set the node name and then you will be asked for remote server details. After clicking the save button it should try to launch the slave machine.
Reference: https://support.cloudbees.com/hc/en-us/articles/227834227-How-to-create-a-new-node-
Upvotes: 0