Posts

Showing posts with the label Jenkins First Job

Jenkins Installation on CentOS7/RHEL/Fedora and Ubuntu

Image
Hello DevOps enthusiast, I'm here with another interesting article on one more DevOps automation tool that is Jenkins CI, where I've explored all possible new learnings which will be used by DevOps. Jenkins installation on CentOS or RHEL or Fedora Simple instructions I've made for reference, which I've used. What are the Pre-requisites for the Jenkins installation Good speed of Internet Either of the platforms will be working: Vagrant installed VirtualBox installed to pull CentOS7 box AWS RHEL instance up and running  Bring up the CentOS/7 box (optional) Note: Ignore this section if you have a Cloud instance ready. Step 1: Create your own CentOS7 vagrant box with the following DSL Vagrantfile: Vagrant.configure(2) do |config| config.vm.box = "centos/7" config.vm.boot_timeout=600 config.vm.host_name = "mydev.devopshunter.com" config.vm.network "private_network", ip: "192.168.33.100" config.vm.syn...