Jenkins is a free and open source CI (Continuous Integration) tool which is written in JAVA. Jenkins is widely used for project development, deployment, and automation. Jenkins allows you to automate the non-human part of the whole software development process. It supports version control tools, including AccuRev, CVS, Subversion, Git, Mercurial, Perforce, ClearCase and RTC, and can execute Apache Ant, Apache Maven and sbt based projects as well as arbitrary shell scripts and Windows batch commands. The creator of Jenkins is Kohsuke Kawaguchi.[3] Released under the MIT License.
Jenkins' security depends on two factors: 1. access control 2. protection from external threats.
Access control can be customized via two ways, user authentication and authorization.
Protection from external threats such as CSRF attacks and malicious builds is supported as well.
Requirements
It does not require any special kind of hardware, you'll only need a CentOS 7 server and a root user access over it. You can switch from non root user to root user usingsudo -icommand.
Update System
It is highly recommended to install Jenkins on a freshly updated server. To upgrade available packages and system run below given command and it'll do the job for you.
yum -y update
Install Java
Before going through the installation process of Jenkins you'll need to set up Java Virtual Machine or JDK to your system. Simply run following command to install Java.
yum -y install java-1.8.0-openjdk.x86_64
Once installation is finished you can check the version to confirm the installation, to do run following command.
java -version
The above command will tell you about the installation details of java. By running the above command you should see the following result on your terminal screen.
openjdk version"1.8.0_131"OpenJDK Runtime Environment(build 1.8.0_131-b12)OpenJDK 64-Bit Server VM(build 25.131-b12, mixed mode)
Next, you'll need to setup two environment variablesJAVA_HOMEandJRE_HOMEand to do so run following commands one by one.
cp /etc/profile /etc/profile_backupecho 'export JAVA_HOME=/usr/lib/jvm/jre-1.8.0-openjdk' | sudo tee -a /etc/profileecho 'export JRE_HOME=/usr/lib/jvm/jre' | sudo tee -a /etc/profilesource /etc/profile
Finally print them for review using following commands.
echo $JAVA_HOME
You should see following output.
/usr/lib/jvm/jre-1.8.0-openjdk
echo $JRE_HOME
Install Jenkins
We have installed all the dependencies required by Jenkins and now we are ready to install Jenkins. Run following commands to install latest stable release of Jenkins.
wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.reporpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
The above two commands will add the jenkins repository and also import the key. If in case you have previously imported the key from Jenkins then therpm --importwill fail because you already have a key. Please ignore that and move on.
Now run following command to install Jenkins on your server.
yum -y install jenkins
Next, you'll need to start Jenkins services and set it to run at boot time and to do so use following commands.
systemctl start jenkins.servicesystemctl enable jenkins.service
Jenkins runs on port 8080 so you'll need to change firewall rules to allow traffic on port 8080.
If in case you don't have firewalld services installed on your server then you can install it usingyum -y install firewalldand you can start it usingsystemctl start firewalld
Next run these below given command to modify the firewalld rules.
firewall-cmd --zone=public --permanent --add-port=8080/tcpfirewall-cmd --reload
Web Access
Open up your favorite web browser and please visit http://YourServerIPaddress:8080 and finish the installation wizard.
You'll see a webpage like this which will ask you for a password and this admin password is created and stored in the log file/var/log/jenkins/jenkins.log.
Run the below command to get the password.
grep -A 5 password /var/log/jenkins/jenkins.log
Copy the password and paste it in above windows and click onContinuebutton.
Next, you'll see a setup wizard web page like this and Select the option :Install suggested plugins. It will install required plugins for Jenkins.
Next, it will ask you to create an Admin User so provide your username and password and email address and then finally click onSave and Finishbutton.
On the next page click onStart using Jenkinsbutton and you'll see a Jenkins user dashboard.
Install Nginx
You can install nginx as reverse proxy for Jenkins, so visitors will no longer need to key in the port number 8080 when accessing your Jenkins application. run following command to install nginx.
yum -y install nginx
Next, you'll need to edit the configuration details using any text editor here we are using nano text editor. you can also install it usingyum -y install nano
nano /etc/nginx/nginx.conf
Find these lines in the configuration file:
location /{}
Add following content into the { } segment in configuration file then save the file and exit from the text editor.
proxy_pass http://127.0.0.1:8080;proxy_redirect off;proxy_set_header Host$host;proxy_set_header X-Real-IP$remote_addr;proxy_set_header X-Forwarded-For$proxy_add_x_forwarded_for;proxy_set_header X-Forwarded-Proto$scheme;
Next, start the nginx services and enable it to run at boot time like we have done before for Jenkins services using following commands.
systemctl start nginx.servicesystemctl enable nginx.service
Finally you'll need to modify firewall rules using following commands.
firewall-cmd --zone=public --permanent --add-service=httpfirewall-cmd --reload
Now you can access it through a web browser via http://yourServerIP .
Conclusion
In tutorial you learned to how to install and configure Jenkins on your CentOS 7 server. You also learned to install nginx and setting it up with Jenkins. We hope now you have enough knowledge to work with Jenkins.