Login
Remember
Register
Ask a Question
What are the ways to configure Jenkins node agent to communicate with Jenkins master?
0
votes
asked
May 1, 2021
in
Jenkins
by
rajeshsharma
What are the ways to configure Jenkins node agent to communicate with Jenkins master?
#jenkins-configure
jenkins-master
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 1, 2021
by
rajeshsharma
There are 2 ways to start the node agent –
Browser – if Jenkins node agent is launched from a browser, a JNLP (Java Web Start) file is downloaded. This file launches a new process on the client machine to run jobs.
Command line – to start the node agent using the command line, the client needs the executable agent.jar file. When this file is run, it launches a process on the client to communicate with the Jenkins master to run build jobs.
...