Posts

Showing posts from August, 2018

Jenkins on RHEL

Installation of Jenkins on RHEL ########################## Getting the repo ####################### [root@dhcppc5 ~]# wget -O /etc/yum.repos.d/jenkins.repo    http://pkg.jenkins-ci.org/redhat/jenkins.repo Importing Key #################################### [root@dhcppc5 ~]# rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key Install package ################# [root@dhcppc5 ~]# yum install jenkins -y Check the version ######################### [root@dhcppc5 ~]# rpm -q jenkins jenkins-2.108-1.1.noarch Install Java ########################## [root@dhcppc5 ~]# yum install java -y Check the status of Firewall ######################### [root@dhcppc5 ~]# systemctl status firewalld If firewalld is running either stop the firewall or add rules to the firewall ######################################################## Stop and disable firewall ############################ [root@dhcppc5 ~]# systemctl stop firewalld && sys

Docker on RHEL

Image
Docker is an open source software platform to create, deploy and manage virtualized application  containers on a common operating system ( OS ), with an ecosystem of allied tools. Docker Inc.,   the company that originally developed Docker, supports a commercial edition and is the principal sponsor of the open source tool. Docker is a tool that packages, provisions and runs containers independent of the OS. Container  technology is available through the operating system: A container packages the application service  or function with all of the libraries, configuration files, dependencies and other necessary parts to  operate. Each container shares the services of one underlying operating system. Docker was created to work on the Linux platform, but has extended to offer greater support for  non-Linux operating systems, including Microsoft Windows and Apple OS X. Versions of Docker for Amazon Web Services (AWS) and Microsoft Azure are available. Th