Difference between revisions of "Distributed Jenkins"

From Lingoport Wiki
Jump to: navigation, search
Line 29: Line 29:
 
* sonar-scanner under jenkins/lingoport/sonar-scanner-x.y/
 
* sonar-scanner under jenkins/lingoport/sonar-scanner-x.y/
 
** the configuration file must point back to the Dashboard Server!
 
** the configuration file must point back to the Dashboard Server!
* jq (see for example https://www.linkedin.com/pulse/how-install-jq-centos-7-artur-todeschini)
+
* jq (see for example <del>https://www.linkedin.com/pulse/how-install-jq-centos-7-artur-todeschini</del>)
  +
** yum install epel-release
  +
** yum install jq
 
* some .sh (distributed_lite_pr.sh, ...)
 
* some .sh (distributed_lite_pr.sh, ...)
   

Revision as of 21:18, 27 December 2016

Notes on the Jenkins Deployment for Scalability around Pull Requests from GitHub.

Close to: http://devopscube.com/setup-slaves-on-jenkins-2/

  1. on master:

Generate an id_rsa key, for example:

 ssh-keygen -t rsa -C "The access key for Jenkins slaves" 

make sure the chmod's are right

Credentials for Jenkins based on SSH username with Private Key: jenkins dashboard –> credentials –> Global credentials –> add credentials

Choose from file with the default id_rsa / id_rsa.pub

copy the public key

Important: This is all based on the key under /var/lib/jenkins/.ssh/ being with the following owner and access permissions:

  -rw-------.  1 jenkins jenkins 1675 Dec 21 21:20 id_rsa
  -rw-r--r--.  1 jenkins jenkins  419 Dec 21 21:20 id_rsa.pub

(see credentials below based on file)

  1. on slave

Make sure the following are installed with the correct version of Java for the given release:

  • Java
  • git
  • Globalyzer Lite under ~jenkins/lingoport/globalyzer-lite-x.y
  • .globalyzerrc
  • sonar-scanner under jenkins/lingoport/sonar-scanner-x.y/
    • the configuration file must point back to the Dashboard Server!
  • jq (see for example https://www.linkedin.com/pulse/how-install-jq-centos-7-artur-todeschini)
    • yum install epel-release
    • yum install jq
  • some .sh (distributed_lite_pr.sh, ...)


copy the public key (id_rsa.pub) into

.ssh/authorized_keys

make sure the chmod is 600, as in:

-rw-------. 1 jenkins jenkins  831 Dec 21 23:05 authorized_keys

Note: Make sure in the copy you have one line for the copy. Sometimes, copying may break the key into multiple lines.

  1. In AWS console / the master and slave nodes:
 Open the 22 ports to and from the two systems to allow jobs to run from Master to Slaves/Agents/Nodes
 Make sure the Outgoing ports and the Incoming ports for the Master and Slaves are allowed for 9000/other to allow Dashboard upload.
  1. On Slave:
  1. On Master:

When click OK. The Node should go on-line. The top of the log should look like:

 [12/22/16 15:47:13] [SSH] Opening SSH connection to 54.89.231.113:22.
 [12/22/16 15:47:13] [SSH] Authentication successful.
 [12/22/16 15:47:13] [SSH] The remote users environment is:
 

On your master machine go to Manage Jenkins > Manage Nodes.