Skip to main content

Posts

Showing posts from September, 2017

How to get bash or ssh into a running container in background mode?

​ Read this tutorial which will help you to understand how to get bash or ssh into a running container in background mode. This tutorial is written by well known experienced DevOps trainer - Rajesh and published on scmGalaxy. Step 1: First of all, try to find your active container by running # docker ps or # docker ps -a   Step 2: If the container is not running, # docker start your_id   Step 3: If we use attach we can use only one instance of shell. # sudo docker attach 665b4a1e17b6 #by ID  Read complete tutorial click here Reference:- This tutorial was originally posted on scmGalaxy.com

Install and Configure Nagios Server and Clients

​ Install and Configure Nagios Server and Clients   Download the Nagios Server Source copy from https://www.nagios.com/products/nagios-xi/   You can also use the direct download links as below; > wget https://assets.nagios.com/downloads/nagiosxi/5/xi-5.2.0.tar.gz   Extract the xi-5.2.0.tar.gz using > tar -zxvf xi-5.2.0.tar.gz   Run the following commands to install it. Read more click here Reference:- This article was originally posted on scmGalaxy

How to install Team Foundation Server 2015?

​ We need to start installating few things.... 1. Install MS SQL SERVER EXPRESS 2016 Download the SQL Server 2016 Express installer (SQLServer2016-SSEI-Expr) on this page that, when executed, will present options to perform an installation or download media only.   Download - https://www.microsoft.com/en-us/download/details.aspx?id=52679   2. Install TFS 2015 Choose one of these installation options: Install over the Internet: Read more click here   Reference:- This article was originally posted on scmGalaxy.com